Composition runs properly locally, but buggy remotely

Hi friends. Just want to preface that the following composition works locally whether I am launching an Edge Animate Preview, or looking at the composition through http on my local Apache installation.  When I access the composition through a remote server, is when the errors occur.  The silver lining is that the same errors occur regardless of who is accessing the page across location and browser. 
With that I'll post the document.compositionReady code:
/* Initialize Sound */
var assetsPath = "media/";
EC.Sound.setup(
        {src: assetsPath + "Coaching_5.mp3|" + assetsPath + "Coaching_5.ogg", id: "slide_5"},
        {src: assetsPath + "Coaching_5a.mp3|" + assetsPath + "Coaching_5a.ogg", id: 'slide_5_1'},
        {src: assetsPath + "Coaching_5b.mp3|" + assetsPath + "Coaching_5b.ogg", id: 'slide_5_2'}
    function(){ EC.info("Sound setup finished", "DEMO"); }
/* Initialize Z-Indexing */          
var currZI = 1000;
/* Apply functionality to the two buttons */
sym.$("polaroid_1").click( function() {
          shiftButtons(1);
sym.$("polaroid_2").click( function () {
          shiftButtons(2);
/* shiftButtons will trigger a series of GSAP animations to show popup content based on selected photo icon */
function shiftButtons(_arg)
          stopAllAudio();
          playAudio(_arg);
          if (_arg == 1)
             sym.$("polaroid_1").css({ "position":"absolute", "z-index":currZI});
             TweenMax.to(sym.$("polaroid_1"),1,{css:{left:680, top:70}});
             TweenMax.to(sym.$("polaroid_2"),1,{css:{left:680, top:170}});
                    TweenMax.to(sym.$("popup_1"),1,{css:{left:33}});
                    TweenMax.to(sym.$("popup_2"),1,{css:{left:1000}});
                    EC.info( "clicked on pic 1, depth = " + currZI);
                    currZI++;
          else if (_arg == 2)
             sym.$("polaroid_2").css({"position":"absolute", "z-index":currZI});
                    TweenMax.to(sym.$("polaroid_1"),1,{css:{left:0, top:170}});
                    TweenMax.to(sym.$("polaroid_2"),1,{css:{left:0, top:70}});
                    TweenMax.to(sym.$("popup_1"),1,{css:{left:-1207}});
                    TweenMax.to(sym.$("popup_2"),1,{css:{left:481}});
                    EC.info( "clicked on pic 2, depth = " + currZI );
                    currZI++;
function playAudio(_arg)
EC.info( "audio trigger: " + _arg);
EC.Sound.play("slide_5_" + _arg);
function stopAllAudio()
   //EC.Sound.stop("slide_5");  // Not used for now
   EC.Sound.stop("slide_5_1");
   EC.Sound.stop("slide_5_2");
What's happened here when viewed remotely, some of the Tween instructions were "skipped" (not executed).  I solved the problem with the two popups not firing by simply combining them into a single div and "pushing" that single div with all of the popup content around the stage.
After that however, I'm finding that remotely, the first time audio should play (when launched by a button click) it does not play.  Every subsequent audio trigger works, just not the very first one.  I'm wondering if there is a conflict here with the stopAllAudio() function. 
Thank you.
Patrick

I had already tried commenting out the second line (setting of the FileName property) on the report object and got the same results.  If I comment out the first line, I need to replace it with something like...
ReportDocument cr = new ReportDocument();
... otherwise where would I specify the path and filename of the report?  If I replace that line with the web report object like I was originally...
CrystalDecisions.Web.Report cr = new CrystalDecisions.Web.Report();
... this won't work either because the Logon() routine (borrowed from the sample app) expects the report reference passed in to be a CrystalDecisions.CrystalReports.Engine.ReportDocument object.
Incidentally, this alternative approach from the sample code, unlike my original code using Web.Report, won't even work in my development environment.  So I'm back where I started.  Since all of my other reports work just fine both in the dev environment and on the server, I'm forced to assume that the problem is something specific to sub-reports since none of my other reports have them.  If I can find a way to apply the LogOnInfo to the sub-reports using the Web.Report object, that might do the trick.  No luck yet, however.
Oh, and one more thing, I found a surprising bug in the Logon() routine of that sample app:
// If the ApplyLogon function fails then return a false for this function.
// We are applying logon information to the main report at this stage.
if (ApplyLogon(cr, ci))
                return false;
It should be...
if (!ApplyLogon(cr, ci))
- Robert -

Similar Messages

  • Slideshow works on local but not remote server?

    Slideshow works on local but not remote server? The site is patriceclarkson.com.

    When I compare your:
    http://www.warpd.ca/SpryAssets/SpryWidget.js
    to this one:
    http://labs.adobe.com/technologies/spry/ui/includes/SpryWidget.js
    I do not see the same file. Try uploading the correct file and check again.
    Xav

  • Spring 3.0 jmx on WL 10.3.3: JConsole connects locally, but not remotely

    I have a Spring 3.0 app running on WebLogic 10.3.3. It registers a Spring bean with JMX. When I run it locally on my laptop, JConsole can connect "locally" and view and manipulate the JMX bean.
    When I deploy the same EAR to WL 10.3.3 on a Solaris/X86 VM, I'm unable to connect with a "remote" connection from JConsole. In the "Remote Process" field, I entered "IP:port", where IP is the IP address of the VM, and port is the listen port of the managed server. I also tried the port of the admin server, but both eventually fail with an EOFException.
    Is there something I need to configure to get this working?
    Edited by: david.karr on Nov 30, 2010 2:56 PM

    David,
    Just to verify, are you running JConsole as the following options (I have had issues in the past just running JConsole.exe without these)
    C:\>jconsole -J-Djava.class.path=C:/opt/wls1031_l16/jdk160_11/lib/jconsole.jar;C:/opt/wls1031_l16/jdk160_11/l
    ib/tools.jar;C:/opt/wls1031_l16/wlserver_10.3/server/lib/wljmxclient.jar -J-Djmx.remote.protocol.provider.pkgs=weblogic.management.remote -J-Dcom.sun.management.jmxremote
    And are you using either of the following methods to connect
    service:jmx:rmi:///jndi/iiop://127.0.0.1:7001/weblogic.management.mbeanservers.runtime
    or
    service:jmx:t3://127.0.0.1:7001/jndi/weblogic.management.mbeanservers.runtime
    username/password = weblogic console username/password
    Alternatively have you tried JRMC.exe JRockit Mission Control?
    There are instructions on the following wiki to connect to WebLogic MBeans via either JConsole or JRMC viewers.
    http://wiki.eclipse.org/EclipseLink/Examples/JPA/WebLogic_Web_Tutorial#JMX_MBeans_on_WebLogic_via_SUN_JConsole
    thank you
    /michael
    http://www.ecllipselink.org

  • [AS3] EventDispatcher works locally but not remotely

    Hi,
    I am very new to Action Script and have the following
    problem. I hope someone can point me in the right direction.
    I have a small video player app. I have added the FLVPlayback
    component to the stage and set some properties via action script
    (AS 3)
    I then instantiate a class to go and retrieve some XML,
    register an eventListener to wait for the XML to be loaded and once
    the event has fired, load the FLV file (just hard coded at the
    moment) into the FLVPlayback object.
    This works when testing in the Flash IDE but not when I
    publish the movie to my webserver. I have tried commenting out the
    player.load() and just adding a textfield and again this works
    locally but not when I publish to the webserver. I have included
    some code snippets below.
    Can anyone tell me where I am going wrong?
    Any pointers much appreciated.
    Thanks
    Martin

    Hi,
    I found the problem if anyone has the same issue. I was
    passing some FlashVars in incorrectly using the
    AC_RunActiveContent.js that comes with Flash. I have switched to
    swfobject and all is well.
    thanks

  • Import.py runs fine locally, but fails on the remote server

    I have the following import.py file (from The Definitive Guide to SOA Oracle Service Bus), which I am calling from an ANT script. It runs fine when I include the parameters for the server running on my machine, but when I change the params to our test server, it connects to the server, but can't create a session. I will include the output of both runs as well. The test server runs on a cluster. Does that make a difference?
    LOCAL OUTPUT:
    Buildfile: C:\Dev\bea\ALSB\crash_alsb\build.xml
    local.import:
    [echo] importscript: import.py
    [java] Initializing WebLogic Scripting Tool (WLST) ...
    [java] Welcome to WebLogic Server Administration Scripting Shell
    [java] Type help() for help on available commands
    [java] Loading Deployment config from : local.import.properties
    [java] Connecting to t3://localhost:7001 with userid weblogic ...
    [java] Successfully connected to Admin Server 'AdminServer' that belongs to domain 'alsb_domain'.
    [java] Warning: An insecure protocol was used to connect to the
    [java] server. To ensure on-the-wire security, the SSL port or
    [java] Admin port should be used instead.
    [java] Location changed to domainRuntime tree. This is a read-only tree with DomainMBean as the root.
    [java] For more help, use help(domainRuntime)
    [java] Attempting to import : crash-alsb-20090205.jar on ALSB Admin Server listening on : t3://localhost:7001
    [java] Read file crash-alsb-20090205.jar
    [java] Created session name SessionScript1236884174250
    [java] finding service...
    [java] creating session...
    [java] return SessionMBean...
    [java] SessionMBean started session
    [java] ALSBConfiguration MBean found [MBeanServerInvocationHandler]com.bea:Name=ALSBConfiguration.SessionScript1236884174250,Type=com.bea.wli.sb.management.configuration.ALSBConfigurationMBean
    [java] Jar Uploaded
    [java] ALSB project crash_alsb will get overlaid
    [java] Default importPlan
    [java] Update Archive crash_alsb/crash-alsb-20090205
    [java] Update Archive crash_alsb/crash-config
    [java] Update WSDL crash_alsb/resources/wsdls/crash-jxdm-20070731
    [java] Update BusinessService crash_alsb/business/crash-20090305
    [java] Update ProxyService crash_alsb/proxy/crash-jxdm-20090305
    [java] Update Archive crash_alsb/export
    [java] got a ref TypeId of <method com.bea.wli.config.Ref.getTypeId of com.bea.wli.config.Ref instance at 22900920>
    [java] got a ref TypeId of <method com.bea.wli.config.Ref.getTypeId of com.bea.wli.config.Ref instance at 23950494>
    [java] got a ref TypeId of <method com.bea.wli.config.Ref.getTypeId of com.bea.wli.config.Ref instance at 16994189>
    [java] got a ref TypeId of <method com.bea.wli.config.Ref.getTypeId of com.bea.wli.config.Ref instance at 6011310>
    [java] got a ref TypeId of <method com.bea.wli.config.Ref.getTypeId of com.bea.wli.config.Ref instance at 33251361>
    [java] got a ref TypeId of <method com.bea.wli.config.Ref.getTypeId of com.bea.wli.config.Ref instance at 6566192>
    [java] Modified importPlan
    [java] Update Archive crash_alsb/crash-alsb-20090205
    [java] Update Archive crash_alsb/crash-config
    [java] Update WSDL crash_alsb/resources/wsdls/crash-jxdm-20070731
    [java] Update BusinessService crash_alsb/business/crash-20090305
    [java] Update ProxyService crash_alsb/proxy/crash-jxdm-20090305
    [java] Update Archive crash_alsb/export
    [java] Deployment of : crash-alsb-20090205.jar successful
    BUILD SUCCESSFUL
    Total time: 8 seconds
    TEST SERVER OUTPUT:
    Buildfile: C:\Dev\bea\ALSB\crash_alsb\build.xml
    remote.import:
    [echo] importscript: import.py
    [java] Initializing WebLogic Scripting Tool (WLST) ...
    [java] Welcome to WebLogic Server Administration Scripting Shell
    [java] Type help() for help on available commands
    [java] Loading Deployment config from : remote.import.properties
    [java] Connecting to http://<IP removed>:7001 with userid <userid removed> ...
    [java] Successfully connected to Admin Server 'AdminServer' that belongs to domain 'WL-DEV'.
    [java] Warning: An insecure protocol was used to connect to the
    [java] server. To ensure on-the-wire security, the SSL port or
    [java] Admin port should be used instead.
    [java] Location changed to domainRuntime tree. This is a read-only tree with DomainMBean as the root.
    [java] For more help, use help(domainRuntime)
    [java] Attempting to import : crash-alsb-20090205.jar on ALSB Admin Server listening on : http://<IP removed>:7001
    [java] Read file crash-alsb-20090205.jar
    [java] Created session name SessionScript1236884107843
    [java] finding service...
    [java] null returned from findService method.
    [java] creating session...
    [java] Unexpected error: exceptions.AttributeError
    [java] Unexpected error: exceptions.AttributeError
    [java] No stack trace available.
    [java] Problem invoking WLST - Traceback (innermost last):
    [java] File "C:\Dev\bea\ALSB\crash_alsb\import.py", line 212, in ?
    [java] File "C:\Dev\bea\ALSB\crash_alsb\import.py", line 130, in importToALSBDomain
    [java] File "C:\Dev\bea\ALSB\crash_alsb\import.py", line 197, in getSessionMBean
    [java] AttributeError: 'None' object has no attribute 'createSession'
    [java] Java Result: 1
    BUILD SUCCESSFUL
    Total time: 14 seconds
    import.py
    from java.util import HashMap
    from java.util import HashSet
    from java.util import ArrayList
    from java.io import FileInputStream
    #from com.bea.wli.config import TypeIds
    from com.bea.wli.sb.util import Refs
    from com.bea.wli.config.customization import Customization
    from com.bea.wli.sb.management.importexport import ALSBImportOperation
    from com.bea.wli.sb.management.configuration import SessionManagementMBean
    from com.bea.wli.sb.management.configuration import ALSBConfigurationMBean
    import sys
    #=======================================================================================
    # Entry function to deploy project configuration and resources
    # into a ALSB domain
    #=======================================================================================
    def importToALSBDomain(importConfigFile):
    try:
    SessionMBean = None
    print 'Loading Deployment config from :', importConfigFile
    exportConfigProp = loadProps(importConfigFile)
    adminUrl = exportConfigProp.get("adminUrl")
    importUser = exportConfigProp.get("importUser")
    importPassword = exportConfigProp.get("importPassword")
    importJar = exportConfigProp.get("importJar")
    customFile = exportConfigProp.get("customizationFile")
    passphrase = exportConfigProp.get("passphrase")
    project = exportConfigProp.get("project")
    connectToServer(importUser, importPassword, adminUrl)
    print 'Attempting to import :', importJar, "on ALSB Admin Server listening on :", adminUrl
    theBytes = readBinaryFile(importJar)
    print 'Read file', importJar
    sessionName = createSessionName()
    print 'Created session name ', sessionName
    SessionMBean = getSessionMBean(sessionName)
    print 'SessionMBean started session'
    ALSBConfigurationMBean = findService(String("ALSBConfiguration.").concat(sessionName), "com.bea.wli.sb.management.configuration.ALSBConfigurationMBean")
    print "ALSBConfiguration MBean found", ALSBConfigurationMBean
    ALSBConfigurationMBean.uploadJarFile(theBytes)
    print 'Jar Uploaded'
    if project == None:
    print 'No project specified, additive deployment performed'
    importResult = ALSBConfigurationMBean.importUploaded(None, false, true, passphrase)
    SessionMBean.commitSession(sessionName)
    else:
    print 'ALSB project', project, 'will get overlaid'
    alsbJarInfo = ALSBConfigurationMBean.getImportJarInfo()
    alsbImportPlan = alsbJarInfo.getDefaultImportPlan()
    alsbImportPlan.setPassphrase(passphrase)
    operationMap=HashMap()
    operationMap = alsbImportPlan.getOperations()
    print
    print 'Default importPlan'
    printOpMap(operationMap)
    set = operationMap.entrySet()
    alsbImportPlan.setPreserveExistingEnvValues(true)
    #boolean
    abort = false
    #list of created ref
    createdRef = ArrayList()
    for entry in set:
    ref = entry.getKey()
    op = entry.getValue()
    #set different logic based on the resource type
    type = ref.getTypeId
    print 'got a ref TypeId of ', type
    if type == Refs.SERVICE_ACCOUNT_TYPE or type == Refs.SERVICE_PROVIDER_TYPE:
    if op.getOperation() == ALSBImportOperation.Operation.Create:
    print 'Unable to import a service account or a service provider on a target system', ref
    abort = true
    elif op.getOperation() == ALSBImportOperation.Operation.Create:
    #keep the list of created resources
    createdRef.add(ref)
    if abort == true :
    print 'This jar must be imported manually to resolve the service account and service provider dependencies'
    SessionMBean.discardSession(sessionName)
    raise
    print
    print 'Modified importPlan'
    printOpMap(operationMap)
    importResult = ALSBConfigurationMBean.importUploaded(alsbImportPlan)
    printDiagMap(importResult.getImportDiagnostics())
    if importResult.getFailed().isEmpty() == false:
    print 'One or more resources could not be imported properly'
    raise
    #customize if a customization file is specified
    #affects only the created resources
    if customFile != None :
    print 'Loading customization File', customFile
    print 'Customization applied to the created resources only', createdRef
    iStream = FileInputStream(customFile)
    customizationList = Customization.fromXML(iStream)
    filteredCustomizationList = ArrayList()
    setRef = HashSet(createdRef)
    # apply a filter to all the customizations to narrow the target to the created resources
    for customization in customizationList:
    print customization
    newcustomization = customization.clone(setRef)
    filteredCustomizationList.add(newcustomization)
    ALSBConfigurationMBean.customize(filteredCustomizationList)
    #SessionMBean.commitSession(sessionName)
    SessionMBean.activateSession(sessionName,"active session from import.py")
    print "Deployment of : " + importJar + " successful"
    except:
    print "Unexpected error:", sys.exc_info()[0]
    if SessionMBean != None:
    SessionMBean.discardSession(sessionName)
    raise
    #=======================================================================================
    # Utility function to print the list of operations
    #=======================================================================================
    def printOpMap(map):
    set = map.entrySet()
    for entry in set:
    op = entry.getValue()
    print op.getOperation(),
    ref = entry.getKey()
    print ref
    print
    #=======================================================================================
    # Utility function to print the diagnostics
    #=======================================================================================
    def printDiagMap(map):
    set = map.entrySet()
    for entry in set:
    diag = entry.getValue().toString()
    print diag
    print
    #=======================================================================================
    # Utility function to load properties from a config file
    #=======================================================================================
    def loadProps(configPropFile):
    propInputStream = FileInputStream(configPropFile)
    configProps = Properties()
    configProps.load(propInputStream)
    return configProps
    #=======================================================================================
    # Connect to the Admin Server
    #=======================================================================================
    def connectToServer(username, password, url):
    connect(username, password, url)
    domainRuntime()
    #=======================================================================================
    # Utility function to read a binary file
    #=======================================================================================
    def readBinaryFile(fileName):
    file = open(fileName, 'rb')
    bytes = file.read()
    return bytes
    #=======================================================================================
    # Utility function to create an arbitrary session name
    #=======================================================================================
    def createSessionName():
    sessionName = String("SessionScript"+Long(System.currentTimeMillis()).toString())
    return sessionName
    #=======================================================================================
    # Utility function to load a session MBeans
    #=======================================================================================
    def getSessionMBean(sessionName):
    #SessionMBean = findService("Session","com.bea.wli.config.mbeans.SessionMBean")
    print "finding service..."
    SessionMBean = findService(SessionManagementMBean.NAME,SessionManagementMBean.TYPE)
    if SessionMBean == None:
    print "null returned from findService method."
    print "creating session..."
    SessionMBean.createSession(sessionName)
    print "return SessionMBean..."
    return SessionMBean
    # IMPORT script init
    try:
    # import the service bus configuration
    # argv[1] is the export config properties file
    importToALSBDomain(sys.argv[1])
    except:
    print "Unexpected error: ", sys.exc_info()[0]
    dumpStack()
    raise

    Your Template code is messed up.
    Use the code validation tools below and fix reported errors.
    Code Validation Tools
    CSS - http://jigsaw.w3.org/css-validator/
    HTML - http://validator.w3.org/
    Then post your Revised Template.dwt code.  Once the editable regions are positioned properly,  your child pages should perform better.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Cannot install or manage Server 2012 R2 RDS server locally but works remotely

    I am working with a Server 2012 R2 standard machine and attempting to get Remote Desktop Services installed and configured on it. Using the Add Roles and Features wizard while logged on locally to the server in question resulted in the error
    “Unable to connect to the server by using Windows PowerShell remoting.” However, if I use a different Server 2012 R2 machine to run the Add Roles and Features wizard remotely targeted
    at the original server then I can successfully get RDS installed.
    Also, after the installation has completed I cannot manage RDS locally on the server but can successfully manage it remotely from another Server 2012 R2 box. When attempting to use Server Manager locally and choose the Remote Desktop Services menu the error
    message "A Remote Desktop Services deployment does not exist in the server pool."
    The server appears to be functioning correctly and can be managed remotely just not locally. I can reproduce the behavior on other Server 2012 boxes in the environment.
    What would cause local install and management to fail but remote management work?

    Hi,
    Have you added the RDS server under server manager ADD server? Does it show the server in server list?
    Check whether there is any wrong IP address\hostname entry occurs under DNS record which looks\points the DNS entry successfully. 
    Add Servers to Server Manager
    https://technet.microsoft.com/en-in/library/hh831453.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Module's creationComplete() function called locally but not remotely

    I have a module that is being loaded using the mxml ModuleLoader. When I run the course locally on xampp, everything works, including the Module's creationComplete function. However, upon loading it and testing on a web server, creationComplete() never gets called. The module loads correctly including all visual objects, however, the data isn't being loaded which is handled in the creationComplete function. I have confirmed this by placing both an Alert.show and Debug.log (Arthropod) function in the creationComplete handler and neither get called when running on the remote server. Both get executed when testing locally.
    Thanks for any and all replies.

    I’m not sure what you mean by “data .. which is handled in creationComplete”.  If you assume your data has arrived by the time creationComplete is called, that may not work on a web server because data transfer is slower and streamed.

  • Loading from local but not remote HELP??

    Hi
    I've created a flash "app" that works 100% on my local server but not on a remote one, I'm connecting to a MySQL server using flash VIA php.
    Weird part is the fact that I can delete and add to the database but it doesn't want to read from the server and populate a datagrid???
    If I test the php file it gives the correct output in IE and the flash file is in the same directory(and domain obviously) it just doens't read\load it?
    Any help would be MUCH appreciated!!!
    Link to php and flash files:
    http://portable-shade.vacau.com/PSIO/

    Hello,
    This forum is actually for the Adobe Digital Rights Management (DRM) product "Flash Access".  Your question likely belongs in the Flash Player forum @ http://forums.adobe.com/community/webplayers/flash_player
    cheers,
    /Eric.

  • Permissions work locally but not remotely

    I've a server that if I log in locally I can change/manage file/folder permission with no issues....but if I remote in via Remote Desktop Connections (I've tried from several workstation sub-nets) I can log on, navigate to the folders, but I can't change
    permission of any folders....what am i missing?
    -SuperDale

    Hi,
    I assume all systems you mentioned are in a domain. I would like to know:
    1. Whether the user account you logged on via RDC is the same one as you logged on locally.
    2. The exact NTFS permission settings on that folder.
    Also please have a try to add your account individually to the NTFS permission of the target folder and give it Full Control permission. See if issue still exists. This is to test if it is caused by NTFS permission setting.
    If you have any feedback on our support, please send to [email protected]

  • Screen Sharing not working locally but fine remotely

    There is a lot to this, so I'll be as brief and direct as possible.
    I've been using Screen Sharing to connect to a headless Mac mini for a while now (used as file and media server).
    Today I updated some Brother printer and scanner drivers in the Mac mini and all as good.
    I had just finished adjusting all the settings and getting my iMac to use the new shared printers when the mini made a strange "meeep" sound like an error (the error sound is something else) - and no more Screen Sharing - locally.
    I used my iPhone and VNC app to connect to mini without problem (through a different wifi network), but my local iMac cannot Screen Share. File sharing and print sharing work just fine (well, a little slow now to connect initially). Seems liek a local network problem to be but I haven't been able to resolve it.
    Tried Chicken of the VNC and it times out (also shows a "second" server of the same name with Host: "address resolve failed".
    All connected though Time Capsule and wifi.
    Ideas?

    The iMac could not screen share to the Mac mini on the samee network/subnet. So I later tried to set up another iMac on a different network to connect via VNC/BTMM through the Internet (port 5900 is open on the router/WAP) and it connected fine.
    I noticed that BTMM was having problems staying stable once I used it from the other iMac. So I looked into the network to see what might need changing. I had always been running with "double-NAT" without any problems before but thought this cold be contributing to the BTMM stability issue which might translate to the issue of being able to share files and printers but not VNC/screen sgaring on the same network. After fixing that and running through a few other minor adjustments (and MANY hours of troble-shooting) it is working just fine again.
    So, I'm not sure if the double-NAT was the problem (had been working fine for a LOOOONG time) or if it was something else. I know you aren't "supposed" to run a double-NAT but the different networks were segregated and should not have caused any problems like I saw. I figure some change I made with the printer/scanner driver (sharing?) must have overtaxed the router....I was also getting conatcnt polling from my iMac looking for the Brother printer on mDNS which was causing a lot of exess traffic so I deleted all Broter communicatipon software just to be safe.
    Anyway, I hope if anybody else has a similar problem (file/print sharing working but screen sharing/VNC not), they can look at their network to make sure they don't have double-NAT (common on DSL Internet connections, too!).

  • Can SSH locally but not remotely

    I have seen many thread on this and I cannot understand why it is not working for me.
    I had SSH server working yesterday and today it stopped working.
    /etc/hosts.allow
    # /etc/hosts.allow
    sshd: ALL
    # End of file
    ~
    /etc/hosts.deny
    # /etc/hosts.deny
    ALL: ALL: DENY
    # End of file
    ~
    /etc/ssh/sshd
    # $OpenBSD: sshd_config,v 1.82 2010/09/06 17:10:19 naddy Exp $
    # This is the sshd server system-wide configuration file. See
    # sshd_config(5) for more information.
    # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
    # The strategy used for options in the default sshd_config shipped with
    # OpenSSH is to specify options with their default value where
    # possible, but leave them commented. Uncommented options change a
    # default value.
    Port 2222
    #AddressFamily any
    #ListenAddress 0.0.0.0
    #ListenAddress ::
    # The default requires explicit activation of protocol 1
    #Protocol 2
    # HostKey for protocol version 1
    #HostKey /etc/ssh/ssh_host_key
    # HostKeys for protocol version 2
    #HostKey /etc/ssh/ssh_host_rsa_key
    #HostKey /etc/ssh/ssh_host_dsa_key
    #HostKey /etc/ssh/ssh_host_ecdsa_key
    # Lifetime and size of ephemeral version 1 server key
    #KeyRegenerationInterval 1h
    #ServerKeyBits 1024
    # Logging
    # obsoletes QuietMode and FascistLogging
    #SyslogFacility AUTH
    #LogLevel INFO
    # Authentication:
    #LoginGraceTime 2m
    #PermitRootLogin yes
    #StrictModes yes
    #MaxAuthTries 6
    #MaxSessions 10
    #RSAAuthentication yes
    #PubkeyAuthentication yes
    #AuthorizedKeysFile .ssh/authorized_keys
    # For this to work you will also need host keys in /etc/ssh/ssh_known_hosts
    #RhostsRSAAuthentication no
    # similar for protocol version 2
    #HostbasedAuthentication no
    # Change to yes if you do not trust ~/.ssh/known_hosts for
    # RhostsRSAAuthentication and HostbasedAuthentication
    #IgnoreUserKnownHosts no
    # Don't read the user's ~/.rhosts and ~/.shosts files
    #IgnoreRhosts yes
    # To disable tunneled clear text passwords, change to no here!
    #PasswordAuthentication yes
    #PermitEmptyPasswords no
    # Change to no to disable s/key passwords
    ChallengeResponseAuthentication no
    # Kerberos options
    #KerberosAuthentication no
    #KerberosOrLocalPasswd yes
    #KerberosTicketCleanup yes
    #KerberosGetAFSToken no
    # GSSAPI options
    #GSSAPIAuthentication no
    #GSSAPICleanupCredentials yes
    # Set this to 'yes' to enable PAM authentication, account processing,
    # and session processing. If this is enabled, PAM authentication will
    # be allowed through the ChallengeResponseAuthentication and
    # PasswordAuthentication. Depending on your PAM configuration,
    # PAM authentication via ChallengeResponseAuthentication may bypass
    # the setting of "PermitRootLogin without-password".
    # If you just want the PAM account and session checks to run without
    # PAM authentication, then enable this but set PasswordAuthentication
    # and ChallengeResponseAuthentication to 'no'.
    UsePAM yes
    #AllowAgentForwarding yes
    #AllowTcpForwarding yes
    #GatewayPorts no
    #X11Forwarding no
    #X11DisplayOffset 10
    #X11UseLocalhost yes
    #PrintMotd yes
    #PrintLastLog yes
    #TCPKeepAlive yes
    #UseLogin no
    #UsePrivilegeSeparation yes
    #PermitUserEnvironment no
    #Compression delayed
    #ClientAliveInterval 0
    #ClientAliveCountMax 3
    #UseDNS yes
    #PidFile /var/run/sshd.pid
    #MaxStartups 10
    #PermitTunnel no
    #ChrootDirectory none
    # no default banner path
    #Banner none
    # override default of no subsystems
    Subsystem sftp /usr/lib/ssh/sftp-server
    # Example of overriding settings on a per-user basis
    #Match User anoncvs
    # X11Forwarding no
    # AllowTcpForwarding no
    # ForceCommand cvs server
    I have confirmed that port is opened on canyouseeme.com.
    I have forwarded the port.
    ssh -v -p 2222 [email protected]
    OpenSSH_6.0p1, OpenSSL 1.0.1c 10 May 2012
    debug1: Reading configuration data /etc/ssh/ssh_config
    debug1: Connecting to xx.xxx.xxx.xx [xx.xxx.xxx.xx] port 2222.
    debug1: connect to address xx.xxx.xxx.xx port 2222: Connection timed out
    ssh: connect to host xx.xxx.xxx.xx port 2222: Connection timed out
    Also I do not have any iptables set up. I have never used them

    Thank you for the responses.
    Sorry I ment to say I verified at http://www.canyouseeme.org/
    My /var/log/auth.log doesn't really have anything interesting. except when verifying with site above
    Aug 1 18:36:19 localhost sshd[30563]: Did not receive identification string from 8.23.224.110
    Not sure if i'm using telnet right
    [miles]> telnet 192.168.0.11 2222
    Trying 192.168.0.11...
    Connected to 192.168.0.11.
    Escape character is '^]'.
    SSH-2.0-OpenSSH_6.0
    [miles]> telnet [email protected] 2222
    [email protected]/2222: lookup failure: Name or service not known
    [miles]> telnet [email protected] 2222
    [email protected]/2222: lookup failure: Name or service not known
    I don't believe i'm running systemd or any special initscripts (please advise me if you need to view anything).
    Yes I have tried rebooting my system

  • JSR portlet works via WSRP locally but not remotely

    Dear gurus,
    I have Webcenter with WebLogic Server Version 10.3.4.0 and I'm trying to deploy a portlet so it can be consumed from another Webcenter instance remotely.
    I have deployed a JSR 268 portlet from a WAR file using JDeveloper and the following steps:
    1. Import portlet from WAR file
    2. Follow http://download.oracle.com/docs/cd/E12839_01/webcenter.1111/e10273/portlets.htm#BEIDHGGE to deploy the portlet as a WSRP producer. Obtain WSDL.
    3. In the administration page for a portal, register the WSRP producer using the supplied WSDL.
    4. Add the portlet to a page on the portal. This works if the portal page is on the same Webcenter instance as the producer.
    However, if I try to consume this portlet from a remote Webcenter instance and follow step 3, "Test Connection" reports success, but the portlet does not appear in the list of available portlets in Step 4.
    Could you please advise what I have missed?
    Thanks in advance,
    Linda Postniece

    cross check again,
    it shouldn't happen in your case.
    earlier i have consumed remote portlets via wsrp and it was working fine for me.
    No,in your case I think you should register the portlet producer in the remote domain's em-> in service cofiguration page ->portlet producer->
    and check it out.

  • Works locally but not remotely

    Hi,
    I'm loading jpegs randomly into my .fla. It works fine
    locally, and it worked fine when I tested it on my personal
    website. But on my company's site, the jpegs don't load. I'm
    thinking maybe it's a path issue, but not sure what the fix
    is...any help would be welcome.
    This is the code I'm using:
    randomNum = Math.round(Math.random()*15);
    loadMovie(randomNum+".jpg", this.blank");
    I've tried adding a path like
    /graphics/flash/2007jazzfest/this.blank but it doesn't like the /.
    I've tried quotes around everything, but it doesn't work...
    You can see it work at:
    http://www.willyurman.com/Test/jazzfest2007.html
    1. click skip intro to get past the opening
    2. click either small red 'jazz fest' button in the upper
    right or left. It should take you to the credit page where a
    different jazz quote appears at random at the bottom.
    On my work site, everything works except that the quotes just
    don't load.
    I go live with this Friday night(the 8th) so any help would
    be appreciated :)
    thanks
    will

    comment out that code. hardcode one jpeg to load and test.
    does that work?
    if yes, copy and paste the code that works and copy and paste
    the code that fails.
    if not, your path may be wrong or your jpegs may be
    corrupted. to check which, enter the path/file name of one of the
    jpegs in your browser window. if it loads, the path in your swf is
    wrong. if it doesn't load you may have the wrong path in your
    browser and in flash, or your jpg is corrupt.

  • Problem with slideshow basic, works locally but not remotely

    Hi, I've noticed many threads on this issue and I have tried many fixes but no success. Most seems to revolve around the SpryWidget.js file so I've loaded it directly from AdobeLabs file. In fact, have loaded all .js files directly via my hosting server in case was a problem with binary/ASCII loading through Dreamweaver Mac.
    My .js file is here:
    http://www.keishahulsey.com/Spry-UI-1.7/includes/SpryWidget.js
    And this is the page I'm having problems with...
    http://www.keishahulsey.com/thesis/MA-2-10.php
    I so rarely post on these forums only read them but am desperate. Would greatly appreciate any help as this is my presentation website for thesis due in one week.

    The link to the main images is incorrect.
    If I go to http://www.keishahulsey.com/_images/_slideshows/thesis-1-60/160smithfield1.jpg, I see the thumbnail, but if I go to http://www.keishahulsey.com/_images/_thesis/_content/1-60-smithfield-1.jpg, instead of the main image, I get a page with markup.
    Simply correct the path and all is well.
    Gramps

  • FLV runs on local, but not on server using CS4

    I have run the insert FLV as a progressive download and it works correctly on live view. Once loaded on the server, it does not work.
    http://www.transworldincelectric.com/test.html
    I have a folder called Scripts loaded to the server and it contains the two files, expressInstall.swf and swfobject_modified.js.
    I have uploaded the flv file, the Clear_Skin_1.swf, and the FLVPlayer_Progressive.swf files.
    Are there settings on the web server that may need to be set?
    thanks,
    Eric

    I found the issue.
    The server MIME for .flv was not set.
    thanks,
    Eric

Maybe you are looking for

  • Calling JSP file from applet and passing a parameter in POST form

    Hi, Can anybody help me. I want to call a JSP page from within a applet and to this JSP page i want to pass the query which the applet has created in POST method. I want to refresh the applet page with the new JSP page by passing the query object so

  • JSP Tiff Image Display

    Hi all, I have a problem in displaying Tiff image in jsp page. I am using Internet Explorer 6.0 . I have installed Tiff Image plug-in from the site www.alternatiff.com. If the location of the image is given directly i can view the image. But through

  • How to make any CUCM image, bootable image

    Como estas everyone I have non bootable CUCM image and i want to make it bootable Any help with this Thanks

  • Db link from oracle 9i to 8i

    hi, we have two databases one is 9i versin 9.2.0.1.0 and another one is 8i version 8.1.6.0.0.we had created database link from 9i to 8i.that link is working fine in SQL*PLUs. we are able to execute the transaction.but when we use the dblink in our fo

  • Hi, please help me. my powerbook G4 has serious probleme

    the screen of my Powerbook G4 15 "is damaged and I connected to an IBM screen. But after two days he goes to sleep when I work. I check my screensaver settings everything is normal. I even try to disconnect the IBM screen but it continues. Sometimes