VideoDisplay  rtmp stream - error 1000 on replay

Hi,
I am unable to restart my video after it plays once all the way through.  I keep getting error
error: 1000: Unable to make connection to server or to find FLV on server.
when I call  videoDisplay.play() after the video is done playing. Obviously it can find becasue it found it the first time through, Could this be due to the fact its an rtmp stream?  what else could be the issue?
thanks in advance...
<mx:Canvas  id="myCanvas"  visible="true"  rollOver="showControls()" rollOut="hideControls()">
        <mx:VideoDisplay   rewind="onRewind(event)" visible="false"  ready="onVideoReady(event)" id="videoDisplay" source="rtmp://myserver.com/flash/Desertrace.f4v" autoPlay="true" playheadUpdate="videoDisplay_playheadUpdate(event)" />
        <mx:HBox visible="false" id="controls" styleName="controllerStyle" alpha="0.0">
            <mx:Button id="playPauseButton" styleName="playPauseStyle" toggle="true" selected="{videoDisplay.playing}" click="playPauseButton_click(event)" />
            <mx:Button id="stopButton" styleName="stopStyle" click="stopButton_click(event)" />
            <mx:Spacer width="100%" />
            <mx:Label id="time" styleName="timeStyle" />
        </mx:HBox>
         <mx:ProgressBar  id="myProgress" indeterminate="true" minimum="0" maximum="100" label="Loading Movie..." fontSize="12" fontFamily="Arial" fontWeight="bold" color="#080808">
       </mx:ProgressBar>
    </mx:Canvas>

You will get a better luck if you post this question on media server forum:
http://forums.adobe.com/community/adobe_media_server?view=discussions

Similar Messages

  • RTMP Stream Not Found Error

    I am having difficulty with some RTMP streams and my OSMF implementation. I am attempting to play a series of RTMP streams, but for some reason, I cannot play them with OSMF (Stream not found). They play fine in JWPlayer, but I am unable to get them to play in Strobe or my OSMF Player. However, my OSMF player does play other streams. I cannot figure out what the difference is. Here is what I have:
    Demo streams:
    rtmp://cp67126.edgefcs.net/ondemand/mp4:mediapm/ovp/content/demo/video/elephants_dream/elephants_dream_768x428_24.0fps_408kbps.mp4
    rtmp://cp67126.edgefcs.net/ondemand/mediapm/strobe/content/test/SpaceAloneHD_sounas_640_500_short
    rtmp://cp67126.edgefcs.net/ondemand/mediapm/osmf/content/test/akamai_10_year_f8_512K
    Problem stream:
    rtmp://flash.delmar.cengage.com/DLvideo/00/03/32/33218.mp4
    OSMF and Strobe players CAN play the demo streams.
    OSMF and Strobe players CANNOT play the problem stream.
    JWPlayer CAN play the problem stream and the demo streams.
    I have tried setting the URLIncludeFMSApplicationInstance flag, I have tried removing the extension, and generally fiddling with the URL itself. I can change the protocol of the problem stream to 'http', and I get a progressive download which works in all players. Can anyone point me in a useful direction?

    http://osmf.org/dev/latest/debug.html?src=rtmp://flash.delmar.cengage.com/DLvideo/mp4:00/0 3/32/33218.mp4
    Lots of dropped frames and rebuffers. Is that a very high bitrate or wide ranging VBR? You might want to consider re-encoding.

  • Error: 1000: No bitrate match

    Does anybody have an answer for this?
    Error: 1000: No bitrate match
    at mx.controls.videoClasses::VideoPlayer/pause()
    at mx.controls::VideoDisplay/pause()
    at components::page7/playPause()
    at components::page7/__playPauseBtn_click()
    Thanks in advance,
    Gene

    I have found the solution.
    Please be aware that these steps do not resolve any issue
    with Flash, but are a configuration step for Microsoft Windows 2003
    and Microsoft IIS Server 6.0. Any difficulties in executing these
    instructions or any errors that may arise from modifying your
    system settings should be addressed to Microsoft. For more details,
    please refer to your IIS documentation.
    On the Windows 2003 server, open the Internet Information
    Services Manager.
    Expand the Local Computer Server.
    Right-click the local computer server and select Properties.
    Select the MIME Types tab.
    Click New and enter the following information:
    Associated Extension box: .FLV
    MIME Type box:flv-application/octet-stream
    Click OK.
    Restart the World Wide Web Publishing service.

  • When FMLE stopped,Remote RTMP stream to FMS 4.5 with rtmfp?

    When FMLE stopped,Remote RTMP stream to FMS 4.5 with rtmfp?
    edit  "applications/multicast/main.asc" ?
    HELP ME !!! THANKS!!!
    * File: main.asc
    * The server-side portion of the multicast sample application.
    * This app accepts publish and unpublish requests from FMLE, and republishes
    * the live stream from FMLE into a target Flash Group.
    // General Constants
    // "Constants" representing multicast event types.
    var TYPE_FUSION = 1;
    var TYPE_IP = 2;
    var TYPE_P2P = 3;
    // StreamContext Description, Constants and Functions
    * Type: StreamContext
    * This application tracks the context for live streams published to the server
    * that are being republished into a Flash Group. The StreamContext "type" used
    * for this is just an Object containing the following members:
    *   client         - The encoding/publishing client.
    *   streamName     - The source Stream name as published by the client.
    *   type           - The multicast event type.
    *   groupspec      - The groupspec identifying the Flash Group and capabilities.
    *   address        - IP multicast address (optional for pure P2P events).
    *   netConnection  - A loopback NetConnection used for the mcastNetStream.
    *   mcastNetStream - The NetStream used to republish the source Stream into
    *                    the Flash Group.
    *   netGroup       - An (optional) NetGroup handle for the target Group.
    *                    Only present for Fusion or P2P events.
    *   state          - One of the state constants defined immediately below
    *                    this comment.
    var STATE_INIT            = 0; // Starting state for a StreamContext.
    var STATE_CONNECTING      = 1; // Establishing loop-back connection.
    var STATE_CONNECTED       = 2; // Connection established.
    var STATE_PUBLISH_PENDING = 3; // Attempting to publish.
    var STATE_REPUBLISHING    = 4; // Actively republishing to multicast.
    var STATE_UNPUBLISHING    = 5; // Shutting down multicast republish.
    var STATE_UNPUBLISHED     = 6; // Unpublished successfully.
    var STATE_DISCONNECTING   = 7; // Shutting down loopback connection.
    var STATE_DISCONNECTED    = 8; // Connection shut down. Done.
    * Registers a source Stream published by the specified client, along with the
    * context for the multicast event, as a StreamContext Object.
    * @param client - The Client publishing the stream.
    * @param streamName - The source Stream name.
    * @param params - The parameters resulting from parsing the source Stream's
    *                 query string.
    * @return The new StreamContext Object for the registered Stream.
    function registerStream(client, streamName, params)
        var streamContext = { "client": client,
                              "streamName": streamName,
                              "type": params["fms.multicast.type"],
                              "groupspec": params["fms.multicast.groupspec"] };
    if (params["fms.multicast.interface"])
      streamContext["interfaceAddress"] = params["fms.multicast.interface"];
        if (params["fms.multicast.address"])
            streamContext["address"] = params["fms.multicast.address"],
        streamContext.state = STATE_INIT;
        updateStreamContextLookups(streamContext);
        trace("Registered multicast context for source stream: " + streamName);
        return streamContext;
    * Updates the indexed lookups installed for the passed StreamContext Object
    * with the application.
    * @param streamContext - The StreamContext Object to (re)index.
    function updateStreamContextLookups(streamContext)
        application.streamTable[streamContext.streamName] = streamContext;
        if (streamContext.netConnection)
            application.netConnTable[streamContext.netConnection] = streamContext;
        if (streamContext.mcastNetStream)
            application.mcastNetStreamTable[streamContext.mcastNetStream] = streamContext;
        if (streamContext.netGroup)
            application.netGroupTable[streamContext.netGroup] = streamContext;
    * Provides access to the StreamContext Object for a registered source Stream
    * by name.
    * @param streamName - A registered source Stream name.
    * @return The associated StreamContext Object; undefined if the source Stream
    *         name is not registered.
    function getStreamContextForSourceStream(streamName)
        return application.streamTable[streamName];
    * Provides access to the StreamContext Object for a given server-side
    * NetConnection hosting a multicast NetStream.
    * @param netConnection - A server-side NetConnection.
    * @return The associated StreamContext Object; undefined if the passed
    *         NetConnection is not indexed to a StreamContext.
    function getStreamContextForNetConnection(netConnection)
        return application.netConnTable[netConnection];
    * Provides access to the StreamContext Object for a given multicast NetStream.
    * @param netStream - A multicast NetStream.
    * @return The associated StreamContext Object; undefined if the passed
    *         NetStream is not indexed to a StreamContext.
    function getStreamContextForMulticastNetStream(netStream)
        return application.mcastNetStreamTable[netStream];
    * Provides access to the StreamContext Object for a given NetGroup associated
    * with a multicast NetStream.
    * @param netGroup - A NetGroup.
    * @return The associated StreamContext Object; undefined if the passed
    *         NetGroup is not indexed to a StreamContext.
    function getStreamContextForNetGroup(netGroup)
        return application.netGroupTable[netGroup];
    * Unregisters the StreamContext from the application.
    * @param streamContext - The StreamContext Object to unregister.
    function unregisterStreamContext(streamContext)
        if (streamContext.netConnection)
            delete application.netConnTable[streamContext.netConnection];
        if (streamContext.mcastNetStream)
            delete application.mcastNetStreamTable[streamContext.mcastNetStream];
        if (streamContext.netGroup)
            delete application.netGroupTable[streamContext.netGroup];
        trace("Unregistered multicast context for source stream: " +
              streamContext.streamName);
    // Application callback functions
    * Initializes global StreamContext lookup tables.
    application.onAppStart = function()
        application.streamTable = {};
        application.netConnTable = {};
        application.mcastNetStreamTable = {};
        application.netGroupTable = {};
    * Handles a publish event for the application by validating the request
    * and bridging the published stream into a target Flash Group. Invalid
    * publish requests are ignored and the publishing client's connection
    * is closed.
    * @param client - The publishing client.
    * @param stream - The published stream.
    application.onPublish = function(client, stream)
        //trace("Handling publish request for source stream: " + stream.name);
        var params = parseQueryString(stream.publishQueryString);
        if (!validateStreamParams(params))
            application.disconnect(client);
            return;
        var prevContext = getStreamContextForSourceStream(stream.name);
        if (prevContext)
            forceCloseStreamContext(prevContext);
        // Register source Stream, and kick off the async process that will
        // eventually wire-up the associated multicast NetStream.
        var streamContext = registerStream(client, stream.name, params);
        openMulticastConnection(streamContext);
    * Handles an unpublish event for the application by shutting down
    * any associated multicast NetStream.
    * @param client - The unpublishing client.
    * @param stream - The source stream being unpublished.
    application.onUnpublish = function(client, stream)
        trace("Handling unpublish request for source stream: " + stream.name);
        var streamContext = getStreamContextForSourceStream(stream.name);
        if (streamContext && (streamContext.state <= STATE_REPUBLISHING))
            destroyStreamContext(streamContext);
    // Callback functions for NetConnection and multicast NetStream/NetGroup wiring.
    * First step in setting up a republished multicast NetStream; open the loopback
    * connection it requires.
    * @param streamContext - The StreamContext Object for the publish event.
    function openMulticastConnection(streamContext)
        var nc = new NetConnection();
        nc.onStatus = netConnectionStatusHandler;
        streamContext.netConnection = nc;
        updateStreamContextLookups(streamContext);
        streamContext.state = STATE_CONNECTING;
        nc.connect(resetUriProtocol(streamContext.client.uri, "rtmfp"));
    * Status event handler for the loopback NetConnection used by the multicast
    * NetStream. Advances setup upon successful connection, or triggers or advances
    * tear-down as a result of connection loss or an unpublish and clean shutdown.
    * @param info - The status info Object.
    function netConnectionStatusHandler(info)
        var streamContext = getStreamContextForNetConnection(this);
        trace("Multicast NetConnection Status: " + info.code +
              (streamContext ? ", Source stream: " + streamContext.streamName : ", Not associated with a source stream."));
        if (streamContext)
            switch (info.code)
            case "NetConnection.Connect.Success":
                streamContext.state = STATE_CONNECTED;
                // If event type is Fusion or P2p, wire up a NetGroup for neighbor
                // bootstrapping and maintenance ahead of (re)publishing the stream.
                var type = streamContext.type;
                if (type == TYPE_FUSION || type == TYPE_P2P)
                    initNetGroup(streamContext);
                else
                    initMulticastNetStream(streamContext);
                break;
            case "NetConnection.Connect.Failed":
            case "NetConnection.Connect.Rejected":
            case "NetConnection.Connect.AppShutdown":
                trace("MULTICAST PUBLISH ERROR: Failed to establish server-side NetConnection for use by multicast NetStream. " +
                      "Status code: " + info.code + ", description: " + info.description + ", Source stream: " +
                      streamContext.streamName);
                streamContext.state = STATE_DISCONNECTED;
                destroyStreamContext(streamContext);
                break;
            case "NetConnection.Connect.Closed":
                if (streamContext.state < STATE_DISCONNECTING)
                    trace("MULTICAST PUBLISH ERROR: Unexpected server-side NetConnection close. " +
                         "Status code: " + info.code + ", description: " + info.description + ", Source stream: " +
                         streamContext.streamName);
                streamContext.state = STATE_DISCONNECTED;
                destroyStreamContext(streamContext);
                break;
            default:
                // Ignore.
    * Initializes the multicast NetGroup following a successful connection of its
    * underlying loopback NetConnection. This hook is optional and only runs for
    * event types of Fusion and pure P2P.
    * @param streamContext - The StreamContext Object for the multicast publish.
    function initNetGroup(streamContext)
        var ng = null;
        try
            ng = new NetGroup(streamContext.netConnection, streamContext.groupspec);
        catch (e)
            trace("MULTICAST PUBLISH ERROR: Failed to construct NetGroup. Error: "
                  + e.name + (e.message ? " " + e.message : "") +
                  ", Source stream: " + streamContext.streamName);
            destroyStreamContext(streamContext);
            return;
        ng.onStatus = netGroupStatusHandler;
        streamContext.netGroup = ng;
        updateStreamContextLookups(streamContext);
    * Status event handler for the multicast NetGroup. Advances to initializing the
    * multicast NetStream upon successful NetGroup connect. Otherwise, triggers
    * shut down.
    * @param info - The status info Object.
    function netGroupStatusHandler(info)
        var streamContext = getStreamContextForNetGroup(this);
        trace("Multicast NetGroup Status: " + info.code +
              (streamContext ? ", Source stream: " + streamContext.streamName : ", Not associated with a source stream."))
        if (streamContext)
            switch (info.code)
            case "NetGroup.Connect.Success":
                initMulticastNetStream(streamContext);
                break;
            case "NetGroup.Connect.Failed":
            case "NetGroup.Connect.Rejected":
                trace("MULTICAST PUBLISH ERROR: Failed to connect multicast NetGroup. " +
                      "Status code: " + info.code + ", description: " + info.description +
                      ", Source stream: " + streamContext.streamName);
                destroyStreamContext(streamContext);
                break;
            case "NetGroup.MulticastStream.UnpublishNotify":
                // At this point, multicast publishers will be notified;
                // continue shut down.
                destroyStreamContext(streamContext);
                break;
            default:
                // Ignore.
    * Initializes the multicast NetStream following a successful connection of its
    * underlying loopback NetConnection.
    * @param streamContext - The StreamContext Object for the multicast publish.
    function initMulticastNetStream(streamContext)
        var ns = null;
        try
            ns = new NetStream(streamContext.netConnection, streamContext.groupspec);
        catch (e)
            trace("MULTICAST PUBLISH ERROR: Failed to construct multicast NetStream. Error: " +
                  e.name + (e.message ? " " + e.message : "") +
                  ", Source stream: " + streamContext.streamName);
            destroyStreamContext(streamContext);
            return;
        var type = streamContext.type;
        if (type == TYPE_FUSION || type == TYPE_IP)
      var iAddr = (streamContext.interfaceAddress) ? streamContext.interfaceAddress : null;
            try
                trace("Multicast NetStream will publish to IP address: " + streamContext.address +
          " on interface address: " + ((iAddr) ? iAddr : "default") +
                      ", Source stream: " + streamContext.streamName);
                ns.setIPMulticastPublishAddress(streamContext.address, iAddr);
            catch (e2)
                trace("MULTICAST PUBLISH ERROR: Failed to assign IP multicast address and port for publishing. Address: "
                      + streamContext.address + " on interface address: " + ((iAddr) ? iAddr : "default") +
          ", Source stream: " + streamContext.streamName);
                destroyStreamContext(streamContext);
                return;
        ns.onStatus = netStreamStatusHandler;
        streamContext.mcastNetStream = ns;
        updateStreamContextLookups(streamContext);
        streamContext.state = STATE_PUBLISH_PENDING;
    * Status event handler for the multicast NetStream. Advances state upon successful
    * connect and publish, or upon successful unpublish. Triggers tear-down if we fail
    * to attach to a source Stream to republish.
    * @param info - The status info Object.
    function netStreamStatusHandler(info)
        var streamContext = getStreamContextForMulticastNetStream(this);
        trace("Multicast NetStream Status: " + info.code +
              (streamContext ? ", Source stream: " + streamContext.streamName : ", Not associated with a source stream."))
        if (streamContext)
            switch (info.code)
            case "NetStream.Connect.Success":
                if (!this.attach(Stream.get(streamContext.streamName)))
                    trace("MULTICAST PUBLISH ERROR: Failed to attach multicast NetStream to source. Source stream: " +
                          streamContext.streamName);
                    destroyStreamContext(streamContext);
        //var stream;
                //stream = Stream.get("liveStream");
                    //return;
                }else{
                this.publish(streamContext.streamName, "live");
                break;
            case "NetStream.Publish.Start":
                streamContext.state = STATE_REPUBLISHING;
                break;
            case "NetStream.Unpublish.Success":
                streamContext.state = STATE_UNPUBLISHED;
                // Wait for unpublish notify event if the context has a NetGroup;
                // otherwise continue shut down now.
                if (!streamContext.netGroup)
                    destroyStreamContext(streamContext);
                    break;
            default:
                // Ignore.
    * The common tear-down hook. Other functions that manage or shut down
    * the StreamContext Object delegate to this function upon detecting a fatal
    * error or during shut down.
    * @param streamContext - The StreamContext Object for the source Stream and
    *                        (potentially wired-up) multicast NetStream.
    function destroyStreamContext(streamContext)
        // Unregister by Stream name immediately; lookups by NetConnection, NetGroup
        // and multicast NetStream remain in place until tear-down is complete.
        delete application.streamTable[streamContext.streamName];
        switch (streamContext.state)
        case STATE_REPUBLISHING:
            streamContext.mcastNetStream.attach(false);
            streamContext.mcastNetStream.publish(false);
            streamContext.state = STATE_UNPUBLISHING;
            return;
        case STATE_CONNECTING:
        case STATE_CONNECTED:
        case STATE_PUBLISH_PENDING:
        case STATE_UNPUBLISHED:
            // Delete status handler callbacks and cleanup in case we arrived here
            // as a result of a force close.
            if (streamContext.netGroup)
                delete streamContext.netGroup.onStatus;
            if (streamContext.mcastNetStream)
                streamContext.mcastNetStream.attach(false);
                delete streamContext.mcastNetStream.onStatus;
            streamContext.netConnection.close();
            streamContext.state = STATE_DISCONNECTING;
            return;
        default:
            // Fall-through.
        // At this point, we either never got to the republishing state or we've
        // proceeded through the clean shut down steps above. Everything for this
        // StreamContext can go away.
        unregisterStreamContext(streamContext);
    * Utility function used to force close a StreamContext in the event that we
    * start handling a republish of a Source stream before the context for its
    * prior incarnation has been torn down.
    * @param streamContext - The StreamContext Object for the source Stream.
    function forceCloseStreamContext(streamContext)
        trace("Force closing previous multicast context for source stream: " + stream.name);
        prevContext.state = STATE_UNPUBLISHED;
        destroyStreamContext(prevContext);
    // Client callback functions
    * A no-op. Answers the RPC in the fashion expected by encoders, but the real
    * work happens in application.onPublish.
    * @param streamName - The name of the stream being published.
    Client.prototype.FCPublish = function(streamName)
        this.call("onFCPublish",
                  null,
                  {code:"NetStream.Publish.Start", description:streamName});
    * A no-op. Answers the RPC in the fashion expected by encoders, but the real
    * work happens in application.onUnpublish.
    * @param streamName - The name of the stream being unpublished.
    Client.prototype.FCUnpublish = function(streamName)
        this.call("onFCUnpublish",
                  null,
                  {code:"NetStream.Unpublish.Success", description:streamName});
    * If the client invoker's ip matches what was captured for a currently publishing
    * stream, assume it's the same client and reset the stream. Otherwise, ignore.
    * @param streamName - The name of the stream being released.
    Client.prototype.releaseStream = function(streamName)
        var streamContext = getStreamContextForSourceStream(streamName);
        if (streamContext &&
            (streamContext.client.ip == this.ip) &&
            (streamContext.state <= STATE_REPUBLISHING))
            // Only tear-down an orphaned stream if it's not
            // already shutting down (see state check above).
            destroyStreamContext(streamContext);
    // Helper functions
    * Validates that a newly published stream has correct metadata (e.g. query
    * string parameters) to republish into a Flash Group. This function also
    * writes a message to the application log for any validation failures.
    * @param params - The quiery string parameters for the source Stream.
    * @return true if valid; otherwise false.
    function validateStreamParams(params)
        var empty = true;
        for (var param in params)
           empty = false;
           break;
        if (empty)
            trace("MULTICAST PUBLISH ERROR: Stream query string is empty.");
            return false;
        if (!params["fms.multicast.type"])
    trace("MULTICAST PUBLISH ERROR: Stream query string does not specify a 'fms.multicast.type'.");
            return false;
        var type = params["fms.multicast.type"];
        if (type != 1 && type != 2 && type != 3)
            trace("MULTICAST PUBLISH ERROR: 'fms.multicast.type' has invalid value: " + type);
            return false;
        if (!params["fms.multicast.groupspec"])
            trace("MULTICAST PUBLISH ERROR: Stream query string does not specify a 'fms.multicast.groupspec'.");
            return false;
        // Fusion and IP require an address:port.
        if ((type == 1 || type == 2) &&
            !params["fms.multicast.address"])
            trace("MULTICAST PUBLISH ERROR: Stream query string does not specify a 'fms.multicast.address'.");
            return false;
        // No obvious validation issues.
        return true;
    * Parses the supplied query string, and if valid, returns an Object populated
    * with the name-value pairs contained in the query string. The simple processing
    * here does not preserve multiple name-value pairings having the same name; the
    * last value seen wins. Parameters with no value are mapped to "" (empty String)
    * in the returned Object.
    * @param queryString - A query string portion of a URI, not including the leading
    *                     '?' character.
    * @return An Object containing a key-value mapping for each name-value parameter
    *         defined in the query string; Object is empty if the query string is
    *         invalid.
    function parseQueryString(queryString)
        var result = {};
        var decoded = "";
        try
            decoded = decodeURIComponent(queryString);
        catch (e) // Invalid URI component; return empty result.
            return result;
        if (decoded.length)
            var params = decoded.split('&');
            for (var i in params)
                var pair = params[i];
         var sepIndex = pair.indexOf('=');
                if (sepIndex != -1)
                    var name = pair.substr(0, sepIndex);
                    result[name] = pair.substr(sepIndex + 1);
                else
                    result[pair] = "";
        return result;
    * Utility function used to swap out the protocol (scheme) portion
    * of a given URI with an alternate.
    * @param uri - The full URI.
    * @param desiredProtocol - The replacement protocol.
    * @return The URI with its protocol replaced.
    function resetUriProtocol(uri, desiredProtocol)
        var sepIndex = uri.indexOf("://");
        return desiredProtocol + uri.substr(sepIndex);

    HELP ME !!! THANKS!!!

  • Using your own AMS, how can you use BitmapData.draw() on an RTMP stream with no security exception?

    We have an Adobe AIR app written in AS3 that can view live video streams from other parties.  That being said, when trying to call BitmapData.draw() on one of those remote video streams (technically we're calling ImageSnapshot.captureImage()), we're getting a 2123 error - a security sandbox exception.  I've seen a lot of people refer to a real simple configuration in the AMS that will allow this to work for RTMP streams, but they keep posting broken links, links to posts that only vaguely mention this configuration, etc.  The one thing I did find is something that I'm having trouble applying:
    http://help.adobe.com/en_US/FlashMediaServer/3.5_SS_ASD/WS5b3ccc516d4fbf351e63e3d11a11afc9 5e-7ec3.html#WS5b3ccc516d4fbf351e63e3d11a11afc95e-7fcb
    Please don't just give me another link, unless it's to a quick, clear explanation.  How do you configure the AMS to allow people to capture screenshots from RTMP video streams?  For the above article, I've tried setting videoStreamAccess and audioStreamAccess both to "/", and even it didn't work.  We also need to be able to do this for P2P RTMFP streams, but that's really a different question.  Thanks.

    You will get a better luck if you post this question on media server forum:
    http://forums.adobe.com/community/adobe_media_server?view=discussions

  • Open VI Reference Error 1000

    Here is the problem:
    I am opening a VI (we will call SubVI) through "Open VI Reference" and running the VI in parallel with the VI (MainVI) that I am opening it from. When I run the MainVI using "Run when Opened", I get a Error 1000 and the SubVI freezes. I break out using ctrl-period. Then I start it up from within LabVIEW and the Error 1000 does not appear. Does anyone have an idea of what is going on? Thanks.

    I'm a bit unclear as to what your setup is. I suggest you post an example which will help clear it.
    As a guess, error 1000 means "The VI is not in a state compatible with this operation". If the subVI is the one set to be run when opened, maybe calling it dynamically is what causes the problem.
    Try to take over the world!

  • Shutdown not working properly. APSCourier: : Stream error APSTCPStream

    since a couple of weeks my imac won't shot down properly from time to time. in the log there are a lot of error messages of this kind: <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10060c290>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    sometimes the usb keyboard and the attached logtech mouse don't work anymore either. if i attach another keyboard to the back of the imac, it works. after a hard reset the mac keyboard and mouse work again.
    the third problem is, that after such hard resets, my truecrypt partition won't mount propery anymore and i get the error "hdiutil: attach failed - no mountable file systems". then again after a reboot it works fine again.
    i did a check with disk utitlity which didn't find any problems. i also repaired permissions. didn't help either.
    i have no idea what the cause could be. bad hardware? bad filesystem? bad os? any ideas?
    here's the end of the log file:
    2010-10-30 13:55:37 Transmission[499] * __NSAutoreleaseNoPool(): Object 0x100500e00 of class NSCFNumber autoreleased with no pool in place - just leaking
    2010-10-30 13:58:08 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10010a5d0>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:03:08 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10010a5d0>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:08:09 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x100636280>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:13:09 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10010a5d0>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:18:09 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10012a000>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:20:10 [0x0-0x29029].com.adiumX.adiumX[331] SocketRead err = -9806
    2010-10-30 14:20:41 [0x0-0x29029].com.adiumX.adiumX[331] SocketRead err = -9806
    2010-10-30 14:23:09 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10060c290>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:28:09 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x100609600>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:32:52 Transmission[499] * __NSAutoreleaseNoPool(): Object 0x100500e00 of class NSCFNumber autoreleased with no pool in place - just leaking
    2010-10-30 14:33:10 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10060c290>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:38:10 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10010a5d0>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:43:10 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x100609600>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:44:18 Transmission[499] * __NSAutoreleaseNoPool(): Object 0x100500e00 of class NSCFNumber autoreleased with no pool in place - just leaking
    2010-10-30 14:48:10 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x100636280>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:53:10 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10010a5d0>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 14:54:00 kernel PreferenceSyncCl (map: 0x8ef9ae4) triggered DYLD shared region unnest for map: 0x8ef9ae4, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 14:54:02 kernel gconsync (map: 0xa334668) triggered DYLD shared region unnest for map: 0xa334668, region 0x7fff82e00000->0x7fff83000000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 14:54:02 kernel SubmitDiagInfo (map: 0x8ef9ae4) triggered DYLD shared region unnest for map: 0x8ef9ae4, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 14:54:03 kernel SyncServer (map: 0xa7b7000) triggered DYLD shared region unnest for map: 0xa7b7000, region 0x7fff82e00000->0x7fff83000000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 14:54:03 kernel AddressBookSync (map: 0x8ef9cd0) triggered DYLD shared region unnest for map: 0x8ef9cd0, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 14:54:10 kernel iCal Helper (map: 0xa334668) triggered DYLD shared region unnest for map: 0xa334668, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 14:58:10 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10010a5d0>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 15:03:10 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10012b990>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 15:08:10 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x100608620>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 15:10:40 kernel quicklookd (map: 0xa7b7000) triggered DYLD shared region unnest for map: 0xa7b7000, region 0x7fff82e00000->0x7fff83000000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:11:33 com.apple.launchd.peruser.501[184] (com.apple.Finder[190]) Exited: Terminated
    2010-10-30 15:11:34 kernel Finder (map: 0xa334148) triggered DYLD shared region unnest for map: 0xa334148, region 0x7fff82e00000->0x7fff83000000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:11:37 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock[188] spawnvialaunchd() failed, errno=2 label=com.apple.Finder flags=2
    2010-10-30 15:11:37 kernel CoreServicesUIAg (map: 0xa334b88) triggered DYLD shared region unnest for map: 0xa334b88, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:11:45 kernel System Events (map: 0x8ef9cd0) triggered DYLD shared region unnest for map: 0x8ef9cd0, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:13:11 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10010a5d0>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 15:13:43 [0x0-0x2c02c].org.participatoryculture.Miro[348] INFO:root:Shutting down downloaders...
    2010-10-30 15:13:43 [0x0-0x2c02c].org.participatoryculture.Miro[348] INFO:root:Shutting down torrent session...
    2010-10-30 15:13:43 [0x0-0x2c02c].org.participatoryculture.Miro[348] INFO:root:Shutdown complete
    2010-10-30 15:13:59 kernel VDCAssistant (map: 0xa334cd0) triggered DYLD shared region unnest for map: 0xa334cd0, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:13:59 GoogleTalkPlugin[1060] Opening shmem segment com.allocinit.CTCtrl2
    2010-10-30 15:13:59 GoogleTalkPlugin[1060] Opening shmem segment com.allocinit.CTImg2.0
    2010-10-30 15:13:59 GoogleTalkPlugin[1060] Opening shmem segment com.allocinit.CTImg2.1
    2010-10-30 15:15:57 kernel Automator Launch (map: 0xa334e18) triggered DYLD shared region unnest for map: 0xa334e18, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:16:04 sudo[1068] flaimo : 3 incorrect password attempts ; TTY=unknown ; PWD=/Users/flaimo ; USER=root ; COMMAND=/Applications/TrueCrypt.app/Contents/MacOS/Truecrypt --core-service
    2010-10-30 15:16:09 sudo[1069] flaimo : TTY=unknown ; PWD=/Users/flaimo ; USER=root ; COMMAND=/Applications/TrueCrypt.app/Contents/MacOS/Truecrypt --core-service
    2010-10-30 15:18:11 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x10013b5d0>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 15:21:09 kernel ScreenSaverEngin (map: 0xa7b7148) triggered DYLD shared region unnest for map: 0xa7b7148, region 0x7fff82e00000->0x7fff83000000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:21:27 [0x0-0x51051].com.apple.ScreenSaver.Engine[1073] CElectricSheep()
    2010-10-30 15:21:27 [0x0-0x51051].com.apple.ScreenSaver.Engine[1073] CElectricSheep_Mac()
    2010-10-30 15:21:27 [0x0-0x51051].com.apple.ScreenSaver.Engine[1073] self - 00054760
    2010-10-30 15:21:27 [0x0-0x51051].com.apple.ScreenSaver.Engine[1073] Startup()
    2010-10-30 15:21:27 [0x0-0x51051].com.apple.ScreenSaver.Engine[1073] SetInstallation: /Library/Screen Savers/Electric Sheep.saver/Contents/Resources/Scripts
    2010-10-30 15:21:27 [0x0-0x51051].com.apple.ScreenSaver.Engine[1073] SetInstallation: /Library/Screen Savers/Electric Sheep.saver/Contents/Resources/Scripts
    2010-10-30 15:21:27 [0x0-0x51051].com.apple.ScreenSaver.Engine[1073] CElectricSheep::Shutdown()
    2010-10-30 15:21:27 [0x0-0x51051].com.apple.ScreenSaver.Engine[1073] Trying to access shutdown singleton CReusableAlignedBuffers
    2010-10-30 15:21:43 kernel pbs (map: 0xa3347b0) triggered DYLD shared region unnest for map: 0xa3347b0, region 0x7fff82e00000->0x7fff83000000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:22:01 kernel Terminal (map: 0x8ef93d8) triggered DYLD shared region unnest for map: 0x8ef93d8, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:22:02 login[1082] USER_PROCESS: 1082 ttys000
    2010-10-30 15:22:03 kernel login (map: 0x941fa40) triggered DYLD shared region unnest for map: 0x941fa40, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:22:16 su[1087] BAD SU flaimo to shutdown on /dev/ttys000
    2010-10-30 15:22:32 sudo[1088] flaimo : TTY=ttys000 ; PWD=/Users/flaimo ; USER=root ; COMMAND=/sbin/shutdown
    2010-10-30 15:22:38 sudo[1090] flaimo : TTY=ttys000 ; PWD=/Users/flaimo ; USER=root ; COMMAND=/sbin/shutdown -u
    2010-10-30 15:22:45 sudo[1091] flaimo : TTY=ttys000 ; PWD=/Users/flaimo ; USER=root ; COMMAND=/sbin/shutdown u
    2010-10-30 15:22:53 sudo[1092] flaimo : TTY=ttys000 ; PWD=/Users/flaimo ; USER=root ; COMMAND=/sbin/shutdown -r
    2010-10-30 15:23:11 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x100608620>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    2010-10-30 15:23:49 login[1082] DEAD_PROCESS: 1082 ttys000
    2010-10-30 15:23:51 login[1105] USER_PROCESS: 1105 ttys000
    2010-10-30 15:23:51 kernel login (map: 0x8ef9290) triggered DYLD shared region unnest for map: 0x8ef9290, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:23:56 sudo[1109] flaimo : TTY=ttys000 ; PWD=/Users/flaimo ; USER=root ; COMMAND=/sbin/shutdown -r now
    2010-10-30 15:25:11 kernel System Profiler (map: 0xa334e18) triggered DYLD shared region unnest for map: 0xa334e18, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:25:31 kernel Console (map: 0x8ef9ae4) triggered DYLD shared region unnest for map: 0x8ef9ae4, region 0x7fff84c00000->0x7fff84e00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
    2010-10-30 15:28:11 apsd-ft[233] <APSCourier: 0x10011deb0>: Stream error occurred for <APSTCPStream: 0x100638e80>: Error Domain=NSPOSIXErrorDomain Code=61 UserInfo=0x10014a970 "The operation couldn’t be completed. Connection refused"
    ----------------------------

    I'm getting the same issue; my system wakes up from sleep about half an hour after I put it to sleep. The display never turns on by itself though—just the system. This has happened since the upgrade to 10.6.5. I'm running build 10H574, which I believe is the release version. The issue appears to have existed in pre-release versions, and does not seem to have been fixed in the release.
    Can anyone shed some light on this issue?

  • Network Stream Error -314340 due to buffer size on the writer endpoint

    Hello everyone,
    I just wanted to share a somewhat odd experience we had with the network stream VIs.  We found this problem in LV2014 but aren't aware if it is new or not.  I searched for a while on the network stream endpoint creation error -314340 and couldn't come up with any useful links to our problem.  The good news is that we have fixed our problem but I wanted to explain it a little more in case anyone else has a similar problem.
    The specific network stream error -314340 should seemingly occur if you are attempting to connect to a network stream endpoint that is already connected to another endpoint or in which the URL points to a different endpoint than the one trying to connect. 
    We ran into this issue on attempting to connect to a remote PXI chassis (PXIe-8135) running LabVIEW real-time from an HMI machine, both of which have three NICs and access different networks.  We have a class that wraps the network stream VIs and we have deployed this class across four machines (Windows and RT) to establish over 30 network streams between these machines.  The class can distinguish between messaging streams that handle clusters of control and status information and also data streams that contain a cluster with a timestamp and 24 I16s.  It was on the data network streams that we ran into the issue. 
    The symptoms of the problem were that we if would attempt to use the HMI computer with a reader endpoint specifying the URL of the writer endpoint on the real-time PXI, the reader endpoint would return with an error of -314340, indicating the writer endpoint was pointing to a third location.  Leaving the URL blank on the writer endpoint blank and running in real-time interactive or startup VI made no difference.   However, the writer endpoint would return without error and eventually catch a remote endpoint destroyed.  To make things more interesting, if you specified the URL on the writer endpoint instead of the reader endpoint, the connection would be made as expected. 
    Ultimately through experimenting with it, we found that the buffer size of the create writer endpoint  for the data stream was causing the problem and that we had fat fingered the constants for this buffer size.   Also, pre-allocating or allocating the buffer on the fly made no difference.  We imagine that it may be due to the fact we are using a complex data type with a cluster with an array inside of it and it can be difficult to allocate a buffer for this data type.  We guess that the issue may be that by the reader endpoint establishing the connection to a writer with a large buffer size specified, the writer endpoint ultimately times out somewhere in the handshaking routine that is hidden below the surface. 
    I just wanted to post this so others would have a reference if they run into a similar situation and again for reference we found this in LV2014 but are not aware if it is a problem in earlier versions.
    Thanks,
    Curtiss

    Hi Curtiss!
    Thank you for your post!  Would it be possible for you to add some steps that others can use to reproduce/resolve the issue?
    Regards,
    Kelly B.
    Applications Engineering
    National Instruments

  • B2B-51566 Description: Parse stream error with RosettaNet 1.1

    Hi
    Need help with the following error message
    B2B-51566 Parse stream error
    We have a trading partner set up to use RosettaNet 1.1 protocol and we are getting 51566 error. We are NOT experiencing this error with a trading partner who is in RosettaNet 2.0
    we are currently patched up to 11.1.1.5
    One thing I notice is when i go to the message and open the packed message i get this "Cannot display Packed Message in binary format."
    Here is the payload
    XMessage-ID: <[email protected]d.e2open.com>
    MIME-Version: 1.0
    Content-Type: multipart/related;
         boundary="----=_Part_176_29725195.1331307008851";
         type="Application/x-RosettaNet"
    Content-Description: This is the RosettaNet Business Message
    Content-ID: "-15059242:135f6ea5e3c:-62b9"
    ------=_Part_176_29725195.1331307008851
    Content-Type: Application/xml; rnsubtype=preamble-header; name=Preamble
    Content-Transfer-Encoding: binary
    Content-Disposition: attachment; filename=Preamble
    Content-ID: <[email protected]>
    Content-Description: This is the Preamble Header part of the Business Message
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE Preamble SYSTEM "PreamblePartMessageGuideline.dtd">
    <Preamble>
    <DateTimeStamp>20120309T153008.852Z</DateTimeStamp>
    <GlobalAdministeringAuthorityCode>RosettaNet</GlobalAdministeringAuthorityCode>
    <GlobalUsageCode>Production</GlobalUsageCode>
    <VersionIdentifier>1.1</VersionIdentifier>
    </Preamble>
    ------=_Part_176_29725195.1331307008851
    Content-Type: Application/xml; rnsubtype=service-header; name=ServiceHeader
    Content-Transfer-Encoding: binary
    Content-Disposition: attachment; filename=ServiceHeader
    Content-ID: <[email protected]>
    Content-Description: This is the Service Header part of the Business Message
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ServiceHeader SYSTEM "ServiceHeaderPartMessageGuideline.dtd">
    <ServiceHeader>
    <ProcessControl>
    <ProcessIdentity>
    <description>
    <FreeFormText>NotNull</FreeFormText>
    </description>
    <GlobalProcessCode>Request Purchase Order</GlobalProcessCode>
    <GlobalProcessIndicatorCode>3A4</GlobalProcessIndicatorCode>
    <initiatingPartner>
    <GlobalBusinessIdentifier>007710825</GlobalBusinessIdentifier>
    </initiatingPartner>
    <InstanceIdentifier>PIPC0A85CB8135F814CB4200000EAFE56F0</InstanceIdentifier>
    <VersionIdentifier>V02.00</VersionIdentifier>
    </ProcessIdentity>
    <ServiceRoute>
    <fromService>
    <BusinessServiceDescription>
    <GlobalBusinessServiceCode>Seller Service</GlobalBusinessServiceCode>
    </BusinessServiceDescription>
    </fromService>
    <toService>
    <BusinessServiceDescription>
    <GlobalBusinessServiceCode>Buyer Service</GlobalBusinessServiceCode>
    </BusinessServiceDescription>
    </toService>
    </ServiceRoute>
    <TransactionControl>
    <AttemptCount>1</AttemptCount>
    <PartnerRoleRoute>
    <fromRole>
    <PartnerRoleDescription>
    <GlobalPartnerRoleClassificationCode>Seller</GlobalPartnerRoleClassificationCode>
    </PartnerRoleDescription>
    </fromRole>
    <toRole>
    <PartnerRoleDescription>
    <GlobalPartnerRoleClassificationCode>Buyer</GlobalPartnerRoleClassificationCode>
    </PartnerRoleDescription>
    </toRole>
    </PartnerRoleRoute>
    <TransactionIdentity>
    <GlobalTransactionCode>Request Purchase Order</GlobalTransactionCode>
    <InstanceIdentifier>TIC0A85CB8135F814CB4200000EAFE5700</InstanceIdentifier>
    </TransactionIdentity>
    <SignalControl>
    <inResponseTo>
    <ActionIdentity>
    <GlobalBusinessActionCode>Purchase Order Request Action</GlobalBusinessActionCode>
    <InstanceIdentifier>C0A85CB8135F814C33C00000EAFE5670</InstanceIdentifier>
    </ActionIdentity>
    </inResponseTo>
    <InstanceIdentifier>20120309T153008.882Z</InstanceIdentifier>
    <PartnerRoute>
    <fromPartner>
    <PartnerDescription>
    <BusinessDescription>
    <GlobalBusinessIdentifier>364132837</GlobalBusinessIdentifier>
    </BusinessDescription>
    <GlobalPartnerClassificationCode>null</GlobalPartnerClassificationCode>
    </PartnerDescription>
    </fromPartner>
    <toPartner>
    <PartnerDescription>
    <BusinessDescription>
    <GlobalBusinessIdentifier>007710825</GlobalBusinessIdentifier>
    </BusinessDescription>
    <GlobalPartnerClassificationCode>null</GlobalPartnerClassificationCode>
    </PartnerDescription>
    </toPartner>
    </PartnerRoute>
    <SignalIdentity>
    <GlobalBusinessSignalCode>Receipt Acknowledge</GlobalBusinessSignalCode>
    <VersionIdentifier>1.1</VersionIdentifier>
    </SignalIdentity>
    </SignalControl>
    </TransactionControl>
    </ProcessControl>
    </ServiceHeader>
    ------=_Part_176_29725195.1331307008851
    Content-Type: Application/xml; rnsubtype=service-content;
         name=ReceiptAcknowledgement
    Content-Transfer-Encoding: binary
    Content-Disposition: attachment; filename=ReceiptAcknowledgement
    Content-ID: <[email protected]>
    Content-Description: This is the Service Content part of the Business Message
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ReceiptAcknowledgement SYSTEM "ReceiptAcknowledgementMessageGuideline.dtd">
    <ReceiptAcknowledgement>
    <fromRole>
    <PartnerRoleDescription>
    <ContactInformation>
    <contactName>
    <FreeFormText>E2open Support</FreeFormText>
    </contactName>
    <EmailAddress>[email protected]</EmailAddress>
    <telephoneNumber>
    <CommunicationsNumber>650-381-6000</CommunicationsNumber>
    </telephoneNumber>
    </ContactInformation>
    <GlobalPartnerRoleClassificationCode>Seller</GlobalPartnerRoleClassificationCode>
    <PartnerDescription>
    <BusinessDescription>
    <GlobalBusinessIdentifier>364132837</GlobalBusinessIdentifier>
    <GlobalSupplyChainCode>Information Technology</GlobalSupplyChainCode>
    </BusinessDescription>
    <GlobalPartnerClassificationCode>null</GlobalPartnerClassificationCode>
    </PartnerDescription>
    </PartnerRoleDescription>
    </fromRole>
    <receivedDocumentDateTime>
    <DateTimeStamp>20120309T153008.907Z</DateTimeStamp>
    </receivedDocumentDateTime>
    <receivedDocumentIdentifier>
    <ProprietaryDocumentIdentifier>337719</ProprietaryDocumentIdentifier>
    </receivedDocumentIdentifier>
    <thisMessageDateTime>
    <DateTimeStamp>20120309T153008.904Z</DateTimeStamp>
    </thisMessageDateTime>
    <thisMessageIdentifier>
    <ProprietaryMessageIdentifier>20120309T153008.905Z</ProprietaryMessageIdentifier>
    </thisMessageIdentifier>
    <toRole>
    <PartnerRoleDescription>
    <GlobalPartnerRoleClassificationCode>Buyer</GlobalPartnerRoleClassificationCode>
    <PartnerDescription>
    <BusinessDescription>
    <GlobalBusinessIdentifier>007710825</GlobalBusinessIdentifier>
    <GlobalSupplyChainCode>Information Technology</GlobalSupplyChainCode>
    </BusinessDescription>
    <GlobalPartnerClassificationCode>null</GlobalPartnerClassificationCode>
    </PartnerDescription>
    </PartnerRoleDescription>
    </toRole>
    </ReceiptAcknowledgement>
    ------=_Part_176_29725195.1331307008851--

    I do have SR but hoping i can get quicker answer hereYou may always escalate the SR if you are not getting response timely. Anyways, give the reference of this thread in the SR and ask service engineer to file a bug.
    I will email you the wire messageI saw the wire message you mailed across. There are some junk characters in the starting of the payload and that's why parsing is failing. Most probably it is a BOM (Byte Order Mark). Ask your TP to send messages in UTF-8 encoding without BOM or any other junk character in the starting of the message. You may open the wire message payload you mailed across in notepad or textpad and you will able to see those junk characters in the starting of the payload.
    Regards,
    Anuj

  • Soap Attachment Stream Error

    11:56:37 F01F Soap Attachment Stream Error: [8911], File Size = 1120068 Written Size=131072
    11:56:37 F01F Soap Attachment Stream Error: [8911], File Size = 1120068 Written Size=131072
    11:56:37 F01F Error streaming an attachment [8911]
    11:56:37 F277 Soap Attachment Stream Error: [8911], File Size = 673015 Written Size=131072
    11:56:37 F277 Soap Attachment Stream Error: [8911], File Size = 673015 Written Size=131072
    11:56:37 F277 Error streaming an attachment [8911]
    What are these?

    Originally Posted by swishewk
    11:56:37 F01F Soap Attachment Stream Error: [8911], File Size = 1120068 Written Size=131072
    11:56:37 F01F Soap Attachment Stream Error: [8911], File Size = 1120068 Written Size=131072
    11:56:37 F01F Error streaming an attachment [8911]
    11:56:37 F277 Soap Attachment Stream Error: [8911], File Size = 673015 Written Size=131072
    11:56:37 F277 Soap Attachment Stream Error: [8911], File Size = 673015 Written Size=131072
    11:56:37 F277 Error streaming an attachment [8911]
    What are these?
    I believe the lines with the file size/written size are files in excess of the limit set in Data Synchronizer.

  • HD movie download problems (error 1000)

    I have recently purchased two HD movies (which I have downloaded) and just purchased Guardians of the Galaxy. Every time I try to download it onto my computers it gets to the end and I get an error (error 1000), I can watch it on my apple TV, but it wont download on my macbook pro or iMac. Everything is up to date as far as software goes. I have had the same internet for all the movies I have purchased and never had any problems with HD movies. Any suggestions?

    In my professional opinion, you should avoid house blackouts while downloading any kind of data. Keep a generator handy.
    Sorry, I have nothing to offer in assistance. This is all uncharted, untried territory. I would hope that ATV would be able to figure out that a partial download had occurred and continue from wherever it needed to for a clean, complete download.
    Jim

  • Buffering pauses and audio/video out of sync, single RTMP stream w/ simple embed

    Hello,
    I am running Flash Media Server on my dedicated CentOS host, and finally connected a single RTMP stream fine and am able to embed and play back the stream, but I am getting constant buffering pauses (approx every 5 secs) and audio/video out of sync by at least 5 seconds. My CPU with Flash Live Encoder is a powerhorse, never over 25% processor or ram usage while streaming, and my upload internet speed is averaging 6-8 mbps which should be more than adequate. I fear the issue is server side, however port 1935 is open and in use, not firewalled on CPU nor the host.
    Any suggestions would be great.

    Hello,
    Thanks for the reply, I am using embed code generated with Flash Media Playback, as follows:
    <object width="640" height="480"> <param name="movie" value="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf"></param><param name="flashvars" value="src=rtmpt%3A%2F%2F50.62.40.55%3A1935%2Flive%2Fchristmastime&poster=http%3A%2F%2Fsq uarestream.ca%2Fpics%2Fframe.jpg&autoPlay=true&streamType=live&optimizeInitialIndex=false" ></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://fpdownload.adobe.com/strobe/FlashMediaPlayback.swf" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="480" flashvars="src=rtmpt%3A%2F%2F50.62.40.55%3A1935%2Flive%2Fchristmastime&poster=http%3A%2F% 2Fsquarestream.ca%2Fpics%2Fframe.jpg&autoPlay=true&streamType=live&optimizeInitialIndex=fa lse"></embed></object>

  • Why do I keep getting Error 1000 When I run Abort VI Method?

    Need to know how to get this to work

    Hitman,
    Here is a KnowledgeBase that discusses the issue.
    Why Do I Get Error 1000 When Attempting to Abort a VI Through VI Server?
    Evan
    National Instruments

  • Damaged AIR File, Error #1000

    Hello,
    This is my first post, but hopefully someone here will be able to help me.
    I am a Flex Developer who was just recently assigned to help out on a project that has gone bonkers.  The project had been going fairly well... but after the latest build the following messages comes up during installation on Windows XP.
    "Sorry, an error has occured.
    The application could not be installed because the AIR file is damaged. Try obtaining a new AIR file from the application author."
    Awesome!  All we need to do is get a new AIR file from the application author... oh wait... I AM the application author.  Grumble grumble.
    So I tried reinstalling the application, but this time I ran it with .airappinstall.log.  Here is what was output by the log.
    Starting app install of file:///C:/Documents%20and%20Settings/Administrator/Desktop/2009-11-30r33MW4.air
    UI SWF load is complete
    UI initialized
    Unpackaging to C:\Documents and Settings\Administrator\Local Settings\Temp\fla1D.tmp
    failed while unpackaging: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Error #1000" errorID=1000]
    starting cleanup of temporary files
    application installer exiting
    So, what exactly is this error?  Can anyone point me to a place where I might be able to look up what Error #1000 is?
    Don't worry I have done my homework,  I know there are a decent amount of posts about people recieving an "AIR file damaged" error.  I have looked and read through them all, but when they run a log on the install it ends up being a different error...so the other posts are not entirely helpful.
    I am guessing something must have been changed in the most recent build but I was just placed into this project so I do not have much knowledge of previous versions.  Any hints of suggestions about common things to check that might be causing this would be greatly appreciated.

    It might help if you can get the installation log and post
    it.
    To get the log, create a file .airappinstall.log in your home
    directory.

  • Problem accessing web service, error 2032 Stream Error

    I'm building a small flex app hat uses two web services
    provided by the same coldfusion CFC.
    I've verified that I can successfully access the web services
    via HTTP, and one of the web services actually does work when
    called. Both return structures that contain a string var, a numeric
    var, and one or more query vars.
    Here is my web service declaration:
    quote:
    <mx:WebService id="ws"
    wsdl="https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc?wsdl"
    useProxy="false">
    <mx:operation name="queryDB" result="queryDBResult()"
    fault="queryDBFault(event)">
    <mx:request>
    <RUNDATE>{cboRunDate.selectedItem.XDATE}</RUNDATE>
    <ENTITYID>{txtEntityID.text}</ENTITYID>
    <LASTNAME>{txtLastName.text}</LASTNAME>
    <FIRSTNAME>{txtFirstName.text}</FIRSTNAME>
    <MINITIAL>{txtMiddleInitial.text}</MINITIAL>
    <PRFSCHCD>{cboPreferredSchool.selectedItem.TABLKEY}</PRFSCHCD>
    <PRRECTYP>{cboRecordType.selectedItem.TABLKEY}</PRRECTYP>
    <PRFCLASS>{txtPreferredClass.text}</PRFCLASS>
    </mx:request>
    </mx:operation>
    <mx:operation name="getListData"
    result="getListDataResult()" fault="getListDataFault()"/>
    </mx:WebService>
    Sorry if the formatting sucks, I don't know how to post
    "code" here.
    Anyway, the getListData() method works fine and populates my
    list boxes. But when I call the queryDB() method, I get the
    following fault event:
    quote:
    [FaultEvent fault=[RPC Fault faultString="HTTP request error"
    faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent
    type="ioError" bubbles=false cancelable=false eventPhase=2
    text="Error #2032: Stream Error. URL:
    https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc"].
    URL:
    https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc"]
    messageId="1E553B99-DF28-ED72-62B8-B84AA3919F9A" type="fault"
    bubbles=false cancelable=true eventPhase=2]
    I've looked all over the place and I can't seem to find what
    this error means. I've tried all kinds of different ways of doing
    things. Right now I'm browsing the flex app via a file URL (C:\...)
    but I tried putting it up on the server too and that didn't work
    either.
    The method call *DOES* work when called via HTTP... ie
    https://www.it.dev.duke.edu/components/dukemagsearch/checkMailing2.cfc?method=queryDB&RUND ATE=2006-05-19&FIRSTNAME=&LASTNAME=SMITH&MINITIAL=&PRFSCHCD=&PRRECTYP=AL&PRFCLASS=&ENTITYI D=
    (You have to be logged in for that to work so you'll just
    have to trust me, it returns no records if you're not logged into
    the web site already).
    I'm totally stressing out about this because I've essentially
    spent the entire day since 8am trying to solve this. The
    application should've taken 15 minutes total.
    HELP!
    Thanks for any suggestions y'all have.
    Rick

    It means your output was not formed correctly and could not
    be parsed. set up a server side script or something to check that
    the output is indeed what you think it should be, 99% of the time i
    get thie error its due to malformed output from my webservice or
    db. Also try making an xml model of your target data to test the
    application internaly, look up model in the docs, it easy to use
    and if the model works then you know the data is faulty and you
    need to check your output and queries.

Maybe you are looking for

  • G570 Choppy Sound - Poor Performanc​e

    Hi I'm currently having a few issues with my laptop All drivers are up to date They all seem to happen at the same time so I believe its a internal issue A lot of the time lately randomly my sound will get really choppy a static sound right when that

  • How to update model only if value has changed?

    I would have expected that a model property is only updated if the value of the UIComponent has changed, but I am apparently wrong. Why is the setter-Method of a model always called, even if the old and new value are the same (or better: equal)? I ha

  • My ipod touch 4 is stuck in recovery mode and i do not know what to do help me

    my ipod touch 4 is stuck in recovery mode and i do not know what to do help me

  • IPhone 5 and iPad v4 not detected in devices over wifi

    A week ago my iPhone and iPad were both linked with my desktop for wifi sync and the Remote app.  A few days ago they both stopped appearing in iTunes unless they are physically connected and my desktop's library no longer appear in the Remote app fo

  • Dynamically Determine the color of graphic

    Hi Experts, Can u plz explain the code how to determine the color of the graphic dynamically.I want black and white graphic on first page and color one on the next page and this must continue till the last page.....