H.264 with AS2?

Can I use video encoded as h.264 within a Flash 9 swf that's
using ActionScript 2, or does it require ActionScript 3?

quote:
It requires actionscript 3.0
I haven't tried it but I don't think that was the intention
with the upgrade. It will require the latest player version, that
is certain. But perhaps existing as2 code will work with the new
video formats if it is playing in the latest player version. I
believe that was the intention from adobe for what *should* be
possible. I remember reading that here last year:
http://www.kaourantin.net/2007/08/what-just-happened-to-video-on-web_20.html
Specifically:
quote:
All your existing video playback front ends will work as they
are. As long as they do not look at the file extension that is,
though renaming the files to use the .flv file extension might help
your component.
But I have not tried it.... so cannot say for certain.

Similar Messages

  • Problem with preloader in Cs5 with AS2

    Hey,
    I made a preloader in Cs5 with AS2 code:
    mask_mc._height = 1;
    this.onEnterFrame = function():Void
    var loading :Number = this.getBytesLoaded();
    var total :Number = this.getBytesTotal();
    var precent:Number = Math.round(loading/total*100);
    mask_mc._yscale = precent;
    txt.text = precent + "%";
    if (loading >= total)
    gotoAndStop(2);
    because I realized that what I'm used to in Cs4 is not working in Cs5. It works fine but, when I press a button that supose to go to another frame, it stock on frame 2.
    How can I solve it?

    terminate that loop:
    mask_mc._height = 1;
    this.onEnterFrame = function():Void
    var loading :Number = this.getBytesLoaded();
    var total :Number = this.getBytesTotal();
    var precent:Number = Math.round(loading/total*100);
    mask_mc._yscale = precent;
    txt.text = precent + "%";
    if (loading >= total)
    delete this.onEnterFrame
    gotoAndStop(2);

  • Problem with CC Receiver with AS2 Adapter Seeburger

    Hi,
    I try to test the AS2 Adapter with Receiver channel y one server and Sender channel in second server, but in the Receiver channel, I have the error :
    "MP: Exception caught with cause com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Object not found in lookup of as2."
    I find the error and I found the URL Error in AS2 adapter. Object not found in lookup of as2.. Its urgent..!! with the same problem, but I have the same configuration in the Party of the receiver and the Sender, the same AS2ID name, and try with the solution in the forum respect the Party name in the scenario of the Receiver, but don't work.
    My scenario is send an IDOC from R/3 to a partner with the AS2 receiver channel.
    Is my fisrt scenario with AS2 adapter. Somebody help me please with any example or with any idea about the solution to my problem?
    Greetings,
    Hervey

    I have resolved this problem, thanks.

  • Assistance with AS2 in Flash Games to Load Multiple Levels

    We have a Flash game that we are creating in CS3 with AS2 with 3 levels that should load the next one dynamically when you win the previous level. Can someone please provide a tutorial or sample code to accomplish this as simply as possible?

    Your design will be too specific to expect to find a tutorial.  If you (or whoever coded what you have now) use the Help files or Google to look up the functions I mentioned, there will be sample code to help you/them to learn how to implement it. 4n

  • AS2 software to work with AS2 adapter of B2B Toolkit 1.0

    Hi Team,
    I am doing scenario on AS2 adapter of B2B ToolKit 1.0 to work with AS2 adapter i need AS2 software and i am thinking to use mendelson AS2 server to work with it does it support it or should i use another AS2 software please suggest me.
    Regards,
    Avinash

    Hi Avinash,
        you have this blog, Easy-to-use AS2 software - part I Easy-to-use AS2 software - part I
    You can find the part 2 and 3 of it. All the info has been explained very good.
    Best regards, i hope it helps you.

  • Encoding h.264 with an audio format other than AAC?

    AME CC only lets me encode an h.264 with AAC audio, and that's the one format I *can't* use for this project! Without descending deep into the crazy world of ffmpeg command lines, is there any way to encode with AC3, WAV, MPEG-2, Vorbis, or FLAC? I hear the occasional murmur of plugins but have never seen a link to such a thing.

    Why can't you use AAC?
    MPEG-4 Part 3 describes support for quite a few audio codecs, AAC and MP3 being the only two most people have heard of.
    I imageine many decoders won't be able to read some codecs on the list. Likewise, other decoders may be able to read codecs not listed, like Vorbis and FLAC.
    I can sympathize with Adobe only wanting to let users make the configuration most likely to be supported. If you want to get fancy, I guess you'll need FFmpeg.

  • When will Apple support h.264 with HE-AAC v2 (in AppleTV/Ipad) ?

    Hello
    When will Apple support h.264 with HE-AAC v2 (in AppleTV/Ipad) ?

    Maybe because iPad2 has a faster processor

  • Confused with as2 vs as3

    hi
    i am new at flash and have been following training i
    purchased from total training and have been building my website in
    flash using the action script 2 setting with some degree of
    success. i have now however hit a brick wall. i am trying to make
    several different videos play in a single window however it gives
    me a warning that what i am trying to do requires action script 3.
    but if i select action script 3 it breaks my entire website as it
    uses behaviors for loading external swf's into a symbol for my
    different pages of the site. (this was the method used by John
    Ulliman) it would appear that action script 3 (the newer format) is
    preventing me from completing my site. what gives. why does action
    script 3 not support behaviours? what is the replacement method for
    this?
    cheers
    Angus

    Angus,
    > i am trying to make several different videos play in a
    single
    > window however it gives me a warning that what i am
    trying
    > to do requires action script 3.
    If your FLA file is already configured for AS2, I'm trying
    to imagine
    how you're seeing a warning about AS3. Maybe you started
    typing
    ActionScript 3.0 code, even though your publish settings are
    configured for
    AS2?
    How are you playing your vidoes ... is this with the
    FLVPlayback
    component, or with NetConnection/NetStream?
    > but if i select action script 3 it breaks my entire
    website as it
    > uses behaviors for loading external swf's into a symbol
    for my
    > different pages of the site.
    Aha. Yes, Behaviors don't work in AS3 because they require
    the on() or
    onClipEvent() functions, which are no longer supported.
    > it would appear that action script 3 (the newer format)
    is
    > preventing me from completing my site. what gives.
    In this case (it sounds like), it's not so much AS3 blocking
    you as it
    is your attempt to mix AS3 with AS2. If you stick with AS2,
    you can go
    right on using Behaviors; it just means you'll have to learn
    the AS2 way of
    playing your numerous videos. If you choose to convert to
    AS3, you'll have
    to load your external SWFs without the assistance of
    Behaviors.
    > why does action script 3 not support behaviours?
    Technically, it's because Behaviors rely on the on() or
    onClipEvent()
    functions, neither of which are supported in AS3. Why that's
    so, I'm afraid
    I can't explain. Lots of people miss Behaviors, but the
    interesting thing
    is, they're nothing more than automatically generated code --
    code from a
    canned set of templates. The Behaviors panel (at least, in
    AS2 documents)
    does nothing but write the code on your behalf. In a sense,
    that's
    convenient, because it helps you avoid typing; in another
    sense, it's
    problematic, because the feature shields you from learning
    how to write code
    yourself.
    > what is the replacement method for this?
    Because most of your site is already finished in AS2, my
    hunch is that
    it would take less effort to code up your video efforts in
    AS2. What code
    have you tried using so far?
    David Stiller
    Co-author, Foundation Flash CS4 for Designers
    http://tinyurl.com/5j55cv
    "Luck is the residue of good design."

  • Receiving document with AS2(HTTP)

    Hi B2B Gurus,
    I have to receive EDI document with AS2 over http(Inbound Operation). I am using the URL : http://<host>:<port>/b2b/httpReceiver ,which is a default HTTP listener of Oracle B2B. I just configured a Generic File channel under the Host trading partner which will writa data to a folder for further processing. I am using Http Post method to send data to the URL.
    Problem:
    when i successfully send data to the B2B listener server , for the first time B2B throws error like : Document Protocol Identification error and again it shows Message state completed and successfully processed other process.
    This is confusing like : first time it throws error and at the same it works perfectly.
    Error Report :
    ==========
    State ============ Document Type========Agreement======== Sender=====Receiver
    Message_Complete === Acknowledgement======= Arg_997========== Local======EDI
    Message_Complete ========997============Arg_997 ==========Local =====EDI
    Message_Error==================================================EDI
    Message_Complete========850=============Arg_850==========EDI======Local
    This type of Report is showing, when i send data to the B2B httpReceiver.
    Any suggestion would be helpful to me.
    Thanks
    Sharmistha
    Edited by: Sharmistha Ghosh on Sep 29, 2011 12:45 PM

    Hi Anuj,
    LOG MESSAGE:
    [2011-09-30T13:01:07.975+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-0000000000060162,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Notification: createErrorDetailsSnippet:      
    <parameter name="b2b.messageId" value="AC12292E132B93E69EE0000037AD4E78"/>[[
         <parameter name="b2b.messageType" value="1"/>
         <parameter name="b2b.toTradingPartnerId" value="<host>"/>
         <parameter name="b2b.toTradingPartnerIdType" value="Generic Identifier"/>
    [2011-09-30T13:01:07.975+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-0000000000060162,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Notification: notifyApp: payload = <Exception xmlns="http://integration.oracle.com/B2B/Exception" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">[[
    <correlationId>null</correlationId>
    <b2bMessageId>AC12292E132B93E69EE0000037AD4E78</b2bMessageId>
    <errorCode>B2B-50083</errorCode>
    <errorText>
    <![CDATA[Document protocol identification error.
      ]]>
    </errorText>
    <errorDescription>
    <![CDATA[Machine Info: <machine name>
    Description: Document protocol identification error.
      ]]>
    </errorDescription>
    <errorSeverity>2</errorSeverity>
    <errorDetails>
         <parameter name="b2b.messageId" value="AC12292E132B93E69EE0000037AD4E78"/>
         <parameter name="b2b.messageType" value="1"/>
         <parameter name="b2b.toTradingPartnerId" value="<host>"/>
         <parameter name="b2b.toTradingPartnerIdType" value="Generic Identifier"/>
    </errorDetails>
    </Exception>
    [2011-09-30T13:01:07.975+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-0000000000060162,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Notification: notifyApp: Enqueue the exception message:[[
    <Exception xmlns="http://integration.oracle.com/B2B/Exception" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <correlationId>null</correlationId>
    <b2bMessageId>AC12292E132B93E69EE0000037AD4E78</b2bMessageId>
    <errorCode>B2B-50083</errorCode>
    <errorText>
    <![CDATA[Document protocol identification error.
      ]]>
    </errorText>
    <errorDescription>
    <![CDATA[Machine Info:<machine name>
    Description: Document protocol identification error.
      ]]>
    </errorDescription>
    <errorSeverity>2</errorSeverity>
    <errorDetails>
         <parameter name="b2b.messageId" value="AC12292E132B93E69EE0000037AD4E78"/>
         <parameter name="b2b.messageType" value="1"/>
         <parameter name="b2b.toTradingPartnerId" value="<host>"/>
         <parameter name="b2b.toTradingPartnerIdType" value="Generic Identifier"/>
    </errorDetails>
    </Exception>
    [2011-09-30T13:01:07.976+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-0000000000060162,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Notification: deliverException: Send message to endpoint IP_IN_QUEUE
    [2011-09-30T13:01:07.976+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-0000000000060162,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: log] URL ===== aq://IP_IN_QUEUE@jdbc/SOADataSource
    [2011-09-30T13:01:07.977+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-0000000000060162,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.transport.AppTransportInterface:send TO Endpoint: 509 aq://IP_IN_QUEUE@jdbc/SOADataSource
    [2011-09-30T13:01:07.977+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-0000000000060162,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] [[
    Protocol = AQ
    Version = 1.0
    Transport Header
    internal:true
    aq.sender.queue_name:IP_IN_QUEUE
    aq.sender.queue_payload_col:PAYLOAD
    aq.sender.datasource:jdbc/SOADataSource
    aq.sender.recipients:b2berroruser
    Parameters
    -- listing properties --
    DOCTYPE_NAME=Exception
    MSG_TYPE=3
    DOCTYPE_REVISION=1.0
    MSG_ID=AC12292E132B93E69EE0000037AD4E78
    ACTION_NAME=Exception
    : ***** ACKNOWLEDGMENT *****
    Exchange Protocol: AS2 Version 1.1
    Transport Protocol: HTTP
    Unique Message ID: <AC12292F132B942A79C00000160393F3@EDI_AS2>
    Trading Partner: Local_AS2
    Message Signed: No
    Payload encrypted: No
    Attachment: None
    ***** ACKNOWLEDGMENT *****
    [2011-09-30T13:01:10.849+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Engine: processIncomingMessageImpl: SYNC RESP =
    [2011-09-30T13:01:10.850+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Engine: processIncomingMessageImpl: Exit
    [2011-09-30T13:01:10.850+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: log] class oracle.tip.b2b.metric.B2BMessageProperties[[
    fromTP : EDI
    toTP : Local
    DocumentProtocol : EDI_X12
    DocumentProtocolVersion : 4010
    DocumentType : 997
    Agreement : Arg_997
    MessageSize : 219.0
    MessageState : COMPLETE
    FromEndpoint : null
    FromEndpointProtocol : null
    FromEndpointStatus : CONNECTED
    ToEndpoint : http://<host:<port>/b2b/httpReceiver
    ToEndpointProtocol : HTTP
    ToEndpointStatus : CONNECTED
    Application : null
    Application : null
    Composite : null
    CompositeVersion : null
    Service/Reference : null
    [2011-09-30T13:01:10.850+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Engine: processIncomingMessage: Elapsed Time = 296
    [2011-09-30T13:01:10.850+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: log] updateProcessingTime (with WireMessage input) Enter
    [2011-09-30T13:01:10.851+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.msgproc.DbAccess:updateProcessingTime (with WireMessage input) Looking for wm.id = AC12292E132B93E702C0000037AD4E82
    [2011-09-30T13:01:10.851+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.msgproc.ToplinkHelper: findBusinessMessageByProtocolMessageId: findBusinessMessagesByWireMessageId >>> wireMsgId : AC12292E132B93E702C0000037AD4E82
    [2011-09-30T13:01:10.851+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [APP: soa-infra] [SRC_METHOD: log] 2011.09.30 13:01:10.851--UnitOfWork(776571749)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--Execute query ReadAllQuery(oracle.tip.b2b.model.instance.BusinessMessage)
    [2011-09-30T13:01:10.852+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [APP: soa-infra] [SRC_METHOD: log] 2011.09.30 13:01:10.852--ServerSession(530093923)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--reconnecting to external connection pool
    [2011-09-30T13:01:10.852+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [APP: soa-infra] [SRC_METHOD: log] 2011.09.30 13:01:10.852--ServerSession(530093923)--Connection(1053913772)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--SELECT t1.ID, t1.MESSAGE_ID, t1.ACK_MODE, t1.MESSAGE_TYPE, t1.ACK_TYPE, t1.XPATH_VALUE3, t1.MODIFIED, t1.ATTRIBUTE2, t1.NATIVE_MSG_SIZE, t1.ATTRIBUTE4, t1.PAYLOAD_NAME, t1.BATCH_ID, t1.RECEIVER_ID_TYPE, t1.CORRELATION_FROM_XPATH_NAME, t1.RECEIVER_ID_VALUE, t1.CORRELATION_FROM_XPATH_XPR, t1.RECEIVER_NAME, t1.CORRELATION_TO_XPATH_VALUE, t1.RECEIVE_TIMESTAMP, t1.CREATED, t1.REFER_TO_MESSAGE_ID, t1.DIRECTION, t1.RESPONSE_MODE, t1.DOC_PROTOCOL_NAME, t1.RESUBMIT_COUNT, t1.DOC_REMAINING_RETRY, t1.SENDER_ID_TYPE, t1.DOCTYPE_NAME, t1.SENDER_ID_VALUE, t1.SENDER_NAME, t1.LABEL, t1.SEND_TIMESTAMP, t1.ATTRIBUTE3, t1.STATE, t1.CONTENT_TYPE, t1.TIME_TO_ACK, t1.CORRELATION_TO_XPATH_NAME, t1.TPA_ID, t1.CPST_INST_CREATED_TIME, t1.TPA_NAME, t1.DOC_PROTOCOL_VERSION, t1.TRANSLATED_MSG_SIZE, t1.DOCUMENT_DEFINITION, t1.XPATH_EXPRESSION1, t1.ATTRIBUTE1, t1.XPATH_EXPRESSION2, t1.CORRELATION_FROM_XPATH_VALUE, t1.XPATH_EXPRESSION3, t1.DOC_ATTEMPT_COUNT, t1.XPATH_NAME1, t1.JOB_ID, t1.XPATH_NAME2, t1.CORRELATION_TO_XPATH_XPR, t1.XPATH_NAME3, t1.ATTRIBUTE5, t1.XPATH_VALUE1, t1.DOC_RETRY_INTERVAL, t1.XPATH_VALUE2, t1.APP_MESSAGE, t1.NATIVE_DATA_STORAGE, t1.TRANSLATED_DATA_STORAGE, t1.ATTACHMENT_STORAGE, t1.EXT_BUSINESS_MESSAGE, t1.PAYLOAD_STORAGE, t1.WIRE_MESSAGE FROM B2B_WIRE_MESSAGE t0, B2B_BUSINESS_MESSAGE t1 WHERE ((t0.ID = ?) AND (t0.ID = t1.WIRE_MESSAGE))[[
         bind => [AC12292E132B93E702C0000037AD4E82]
    [2011-09-30T13:01:10.853+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.msgproc.ToplinkHelper: findBusinessMessageByProtocolMessageId: Got 1 messages
    [2011-09-30T13:01:10.853+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.msgproc.ToplinkHelper: findBusinessMessageByProtocolMessageId: Exit
    [2011-09-30T13:01:10.854+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.msgproc.DbAccess:updateProcessingTime (with WireMessage input) Got 1 messages
    [2011-09-30T13:01:10.854+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] oracle.tip.b2b.msgproc.DbAccess:updateProcessingTime (with WireMessage input) Set Processing time as 296
    [2011-09-30T13:01:10.854+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Engine: processIncomingMessage: Exit
    [2011-09-30T13:01:10.854+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Engine: incomingContinueProcess: Exit
    [2011-09-30T13:01:10.855+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Engine: handleMessageEvent: Exit
    [2011-09-30T13:01:10.855+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.engine] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.system.DiagnosticService] [APP: soa-infra] [SRC_METHOD: synchedLog_J] Engine: processEvents: Exit
    [2011-09-30T13:01:10.855+05:30] [soa_server1] [TRACE:16] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.855--UnitOfWork(776571749)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--TX beforeCompletion callback, status=STATUS_ACTIVE
    [2011-09-30T13:01:10.856+05:30] [soa_server1] [TRACE:16] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.856--UnitOfWork(776571749)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--begin unit of work commit
    [2011-09-30T13:01:10.857+05:30] [soa_server1] [TRACE:16] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.857--ClientSession(1583262624)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--TX beginTransaction, status=STATUS_ACTIVE
    [2011-09-30T13:01:10.857+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.857--UnitOfWork(776571749)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--Execute query InsertObjectQuery(oracle.tip.b2b.model.instance.DataStorage@76a4b4c8)
    [2011-09-30T13:01:10.858+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.858--ClientSession(1583262624)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--reconnecting to external connection pool
    [2011-09-30T13:01:10.858+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.858--ClientSession(1583262624)--Connection(960060373)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--INSERT INTO B2B_DATA_STORAGE (ID, DATA_SIZE, VALUE_SELECTOR, DOCUMENT_ID, ATTRIBUTE1, CLOB_VALUE, CPST_INST_CREATED_TIME, BLOB_VALUE, JOB_ID, ATTRIBUTE2, LABEL) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[[
         bind => [*** VALUES HIDDEN ***]
    [2011-09-30T13:01:10.859+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.859--UnitOfWork(776571749)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--Execute query InsertObjectQuery(oracle.tip.b2b.model.instance.DataStorage@765c5abf)
    [2011-09-30T13:01:10.860+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.860--ClientSession(1583262624)--Connection(960060373)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--INSERT INTO B2B_DATA_STORAGE (ID, DATA_SIZE, VALUE_SELECTOR, DOCUMENT_ID, ATTRIBUTE1, CLOB_VALUE, CPST_INST_CREATED_TIME, BLOB_VALUE, JOB_ID, ATTRIBUTE2, LABEL) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[[
         bind => [*** VALUES HIDDEN ***]
    [2011-09-30T13:01:10.861+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.861--UnitOfWork(776571749)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--Execute query InsertObjectQuery(oracle.tip.b2b.model.instance.ExtBusinessMessage@4fb164cf)
    [2011-09-30T13:01:10.861+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.861--UnitOfWork(776571749)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--Execute query WriteObjectQuery(oracle.tip.b2b.model.instance.BusinessMessage@3afbe406)
    [2011-09-30T13:01:10.862+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.862--UnitOfWork(776571749)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--Execute query WriteObjectQuery(oracle.tip.b2b.model.instance.ExtBusinessMessage@4fb164cf)
    [2011-09-30T13:01:10.863+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.862--ClientSession(1583262624)--Connection(960060373)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--INSERT INTO B2B_EXT_BUSINESS_MESSAGE (ID, ERROR_DETAIL_CLOB, ATTRIBUTE1, ERROR_LEVEL, BUSINESS_ACTION_NAME, ERROR_SEVERITY, BUSINESS_TRANSACTION_ID, ERROR_TEXT, BUSINESS_TRANSACTION_VERSION, ERROR_TEXT_CLOB, COLLABORATION_NAME, EXCHANGE_PROTOCOL_NAME, COLLABORATION_STATE, EXCHANGE_PROTOCOL_VERSION, DELIVERED_ENDPOINT, FROM_ROLE, ERROR_DESCRIPTION, GROUP_CONTROL_NUMBER, ERROR_DETAIL, TXNSET_CONTROL_NUMBER, INTERCHANGE_CONTROL_NUMBER, COLLABORATION_ID, JOB_ID, COLLABORATION_VERSION, LABEL, ERROR_DESCRIPTION_CLOB, PROCESSING_TIME, BUSINESS_TRANSACTION_NAME, PROTOCOL_WORK_AREA, ERROR_CODE, QUEUE_TIME, CPST_INST_CREATED_TIME, SEQUENCE_TARGET, ATTRIBUTE2, TO_ROLE, BUSINESS_MESSAGE) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[[
         bind => [AC12292E132B93E74C40000037AD4E88, null, Interchange Sen, null, null, null, null, null, null, null, null, AS2, null, 1.1, null, null, null, null, null, null, null, null, null, null, null, null, 296, null, null, null, null, 2011-09-30 13:01:09.483, null, Interchange Rec, null, null]
    [2011-09-30T13:01:10.864+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.864--UnitOfWork(776571749)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--Execute query WriteObjectQuery(oracle.tip.b2b.model.instance.DataStorage@765c5abf)
    [2011-09-30T13:01:10.864+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.864--UnitOfWork(776571749)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--Execute query WriteObjectQuery(oracle.tip.b2b.model.instance.WireMessage@1c76cacb)
    [2011-09-30T13:01:10.865+05:30] [soa_server1] [TRACE:32] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.865--UnitOfWork(776571749)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--Execute query WriteObjectQuery(oracle.tip.b2b.model.instance.DataStorage@76a4b4c8)
    [2011-09-30T13:01:10.866+05:30] [soa_server1] [TRACE] [] [oracle.soa.b2b.repository] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7] [userId: <anonymous>] [ecid: b9c170586825fe53:3e0b31b0:132ab6771a1:-8000-000000000006016d,0] [SRC_CLASS: oracle.tip.b2b.log.ToplinkLogger] [SRC_METHOD: log] 2011.09.30 13:01:10.866--ClientSession(1583262624)--Connection(960060373)--Thread(Thread[weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@33b06fc7,10,Application Daemon Threads])--UPDATE B2B_WIRE_MESSAGE SET ATTRIBUTE1 = ?, MODIFIED = ?, MSG_SIZE = ?, PROTOCOL_MESSAGE_ID = ?, PROTOCOL_TRANSPORT_BINDING = ?, REFER_TO_PROTOCOL_MESSAGE_ID = ?, STATE = ?, PAYLOAD_STORAGE = ? WHERE (ID = ?)[[
         bind => [AC12292E132B93E74C40000037AD4E88, 2011-09-30 13:01:10.846, 219, <AC12292F132B942A79C00000160393F3@EDI_AS2>, AS2-To=Local_AS2
    TE=trailers, deflate, gzip, compress
    Date=Fri, 30 Sep 2011 07:35:45 GMT
    AS2-Version=1.1
    Accept-Encoding=gzip, x-gzip, compress, x-compress
    AS2-From=EDI_AS2
    Content-Transfer-Encoding=binary
    Message-ID=<AC12292F132B942A79C00000160393F3@EDI_AS2>
    Content-type=multipart/report; report-type=disposition-notification; boundary="----=_Part_2_358023305.1317368145834"
    MSG_RECEIVED_TIME=Fri Sep 30 13:01:09 IST 2011
    ECID-Context=1.449b4b64fa2729cc:-36730b0e:132b5a57e53:-8000-0000000000019106;kXCpv0ZGZKSULGSPXKTPJHSRo4USpLO
    MIME-version=1.0
    isbinaryTfr=false
    User-Agent=AS2 Server Oracle HTTPClient Version 10h
    HostName=<HostName>
    Content-Length=795
    Host=<HostName>:<port>
    RemoteHostName=<********************>
    Connection=close, TE
    From=EDI_AS2
    , <AC12292E132B93E68B60000037AD4E75@Local_AS2>, COMPLETE, AC12292E132B93E74D70000037AD4E8A, AC12292E132B93E702C0000037AD4E82]
    ]]

  • Receiving document with AS2 over http

    In Oracle B2B if I have to receive the document with AS2 over http, what can be the URL? The fusion server is running in a linux server. There is a folder in that server where we can preserve the incoming files for further processing.

    Hi Anuj,
    The solution you have provided work, in the sense that the b2b server is receiving the file.
    But after the receipt I am seeing two errors, the sender is sending a text file, with the name xxxx.txt.
    The errors are:
    : B2B-50083 (error severity: error)
    Error Description Machine Info: <machine name>) Document protocol identification error.
    Error Level ERROR_LEVEL_COLLABORATION
    Error Severity ERROR
    Error Text Document protocol identification error.
    B2B-50079 ( (error severity: information)
    Error Description Machine Info: (<machinename>) Transport error: [IPT_HttpSendError] HTTP encounters send error :404 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>Sorry!The page requested was not found.</p> </body></html> .
    Error Level ERROR_LEVEL_COLLABORATION
    Error Severity INFORMATION
    Error Text Transport error: [IPT_HttpSendError] HTTP encounters send error :404 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>Sorry!The page requested was not found.</p> </body></html> .
    In the agreement, I did not put any validation against any schema file.

  • Is Flash CS6 download still available to CC subscribers? I need to create a SWF to work with AS2.

    Is Flash CS6 download still available to CC subscribers?
    I need to create a SWF to work with AS2.

    Get CS6 Apps from Cloud Subscription:
    Download previous versions of Adobe Creative applications -
    http://helpx.adobe.com/creative-cloud/kb/download-previous-versions-creative-applications. html

  • How to close browser window with AS2

    I'm currently working with a flash movie that opens up an IE browser to an external link.
    Since I'm working with a presentation that plays automatically after a few seconds and keeps loading new IE browsers with different links, I was wondering if there was a way with AS2, i can have flash close the IE window it opened?

    I need to close the IE window WITHOUT the use of a button. I need
    to have flash close the IE window it opens after a couple of frames. thanks in advance

  • I tell her that I'm developing a flash content with as2 and I have a very simple problem, I hope you

    Hello, how are you?
    I tell her that I'm developing a flash content with as2 and I have a very simple problem, I hope you can help me
    I happened to create a movie clip and inside to create a scroll that is two isntancias,
    I mean:
    in the first frame create a button in the 6 to 5 buttons and an action to melleve the sixth frame and another to return. (Elemental truth)
    Now I have a problem. In creating a movie clip instance name to each button and in the average place the next fram as2,
    boton.onRollOver name = function () {
           gotoAndStop ("Scene 1", "eqtiqueta");
    because what I want is that from inside the movie clip, go to the scene proncipal to a frame that is three in the label name.
    however, does not work.
    appreciate your cooperation.
    Escuchar
    Leer fonéticamente
    Diccionario - Ver diccionario detallado

    Hello, I think you need to start a discussion on the Action Script forum. This is the Flash Player forum, the browser plugin.
    Thanks,
    eidnolb

  • Exporting h.264 with CS4 vs CS3

    Maybe I'm just dumb and this is an easy question....I'm not sure, but here goes:
    I had a project in Premiere Pro CS3, a music video. I'm used to exporting videos as quicktime with an h.264 codec for online streaming from CS3, and they always looked great. A lot of websites cap video uploads to 500MB or a gig, so it was a perfect way to get a high quality video on the net. The 3 minute music video I was working on became a great looking 450MB h.264 movie.
    With CS4 and the adobe media encoder, things are a bit different. I export as a quicktime movie with the h.264 codec, at the same settings (100% quality) but it looks awful. The same music video was around 80MB and didn't look anywhere near the quality of same video exported from CS3. I've tried a number of options and presets, and havn't been able to get the same quality or size file.
    I even checked both files in G-Spot codec reader (great tool) and they were the exact same AVC1-h.264 codec.
    What is happening here? Is the codec somehow used differently in CS4 than in CS3? Is there something I'm not doing to get a high quality h.264 movie out of CS4?
    Thanks,
    Peter

    The bitrate of your output movie depends on your Export Settings. At the bottom of the Preset list is "Edit Export Settings". There you can adjust all the settings just like CS3.

  • Seeburger inbound/outbound mapping options with AS2 adapter

    Hi Gurus,
    This is the first time that i am handling Seeburger adapters(AS2 adapter).
    We have the following issue.
    We are using AS2 adapter from Seeburger for communicating with Partners (inbound/outbound).
    For some scenarios, the trading partners either sends us a flat/csv file or expects a flat/csv file from PI.
    And for these scenarios, we are using the AS2 adapter (for sender or receiver channel configuration) .
    Now, the main issue is that we need to convert the flat file to PI-XML format when we receive a flat file from a trading partner or we need to convert from PI-XML format to flat file format when we are sending file to a trading partner.
    Since the AS2 adapter does not have a File Content Conversion (Like we have in the File/FTP adapter) mechanism, we need to rely on MessageTransformBean (under AF Modules) to do the conversion for us. However, since this module cannot handle deep structures (nested structures) what other alternatives can we look out for ?
    I know we can also go for BIC Mapper which is shipped from Seeburger for EDI to XML and XML to EDI conversions. However in this project, we just need XML to flat file/CSV or Flat File/CSV to XML conversions and hence we want to abstain from buying a license for BIC mapper.
    Please let me know what other options can we try in this case.
    Does Seeburger has anything specific to do the conversions from XML to flat file or flat file to XML (and not the whole BIC mapper tool).
    Regards, Gaurav.

    Does Seeburger has anything specific to do the conversions from XML to flat file or flat file to XML (and not the whole BIC mapper tool).
    No. Seeburger doesn't provide any such tool/option.
    Please let me know what other options can we try in this case.
    As per the detail you have provided, you don't have any standard option left. You have to either develop your own adapter module or you can pass the payload directly to mapping and then perform Java mapping on it. You have option of using Conversion Agent but there must be some license cost for it as well.
    Regards,
    Prateek

Maybe you are looking for